From 937de54ff5b61118a26eaf6e97400f78bde6c570 Mon Sep 17 00:00:00 2001 From: stsp Date: Sun, 31 Oct 2021 12:24:02 +0000 Subject: [PATCH] Make athn(4) attach to the Sony UWA-BR100. Patch by martingot@protonmail --- sys/dev/usb/if_athn_usb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/usb/if_athn_usb.c b/sys/dev/usb/if_athn_usb.c index 08ffda8c9aa..3d0e835978b 100644 --- a/sys/dev/usb/if_athn_usb.c +++ b/sys/dev/usb/if_athn_usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_athn_usb.c,v 1.61 2021/04/15 18:25:44 stsp Exp $ */ +/* $OpenBSD: if_athn_usb.c,v 1.62 2021/10/31 12:24:02 stsp Exp $ */ /*- * Copyright (c) 2011 Damien Bergamini @@ -91,6 +91,8 @@ static const struct athn_usb_type { ATHN_USB_FLAG_AR7010 }, {{ USB_VENDOR_PANASONIC, USB_PRODUCT_PANASONIC_N5HBZ0000055 }, ATHN_USB_FLAG_AR7010 }, + {{ USB_VENDOR_MELCO, USB_PRODUCT_MELCO_UWABR100 }, + ATHN_USB_FLAG_AR7010 }, {{ USB_VENDOR_VIA, USB_PRODUCT_VIA_AR9271 }} }; #define athn_usb_lookup(v, p) \ -- 2.20.1