summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorStefan Sperling <stsp@cvs.openbsd.org>2020-04-19 21:40:22 +0000
committerStefan Sperling <stsp@cvs.openbsd.org>2020-04-19 21:40:22 +0000
commitb013ee822ae5f1e7aa45d9a37a2fd2e93b77cbdc (patch)
treea550ed68e63fbbab1dbec2f8eb0d7ce75c8cfe33 /sys/dev
parent7519e1d85cec40a056fcb7d8e38b0784d682851f (diff)
Add comments to clarify the hex IDs of some bwfm(4) devices on SD bus.
ok jmc@ deraadt@ kettenis@ "thanks and don't wait for me" patrick@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/sdmmc/if_bwfm_sdio.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/sdmmc/if_bwfm_sdio.c b/sys/dev/sdmmc/if_bwfm_sdio.c
index b053ab936ef..b8b6ae4b94c 100644
--- a/sys/dev/sdmmc/if_bwfm_sdio.c
+++ b/sys/dev/sdmmc/if_bwfm_sdio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bwfm_sdio.c,v 1.35 2020/03/14 01:30:34 jsg Exp $ */
+/* $OpenBSD: if_bwfm_sdio.c,v 1.36 2020/04/19 21:40:21 stsp Exp $ */
/*
* Copyright (c) 2010-2016 Broadcom Corporation
* Copyright (c) 2016,2017 Patrick Wildt <patrick@blueri.se>
@@ -222,12 +222,12 @@ bwfm_sdio_match(struct device *parent, void *match, void *aux)
case 0x4345:
case 0x4354:
case 0x4356:
- case 0xa887:
- case 0xa94c:
- case 0xa94d:
- case 0xa962:
- case 0xa9a6:
- case 0xa9bf:
+ case 0xa887: /* BCM43143 */
+ case 0xa94c: /* BCM43340 */
+ case 0xa94d: /* BCM43341 */
+ case 0xa962: /* BCM43362 */
+ case 0xa9a6: /* BCM43430 */
+ case 0xa9bf: /* BCM43364 */
break;
default:
return 0;