diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2024-10-07 07:35:41 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2024-10-07 07:35:41 +0000 |
commit | a054ae2e1d116c6562ff5c04a18459242d9534a3 (patch) | |
tree | 478900e08ce685e2c120034dec5d42b11eb72325 /sys/dev/usb/if_axenreg.h | |
parent | 48396a011420135edf28e3fc79d905685a1e9263 (diff) |
Add support for AX88772D.
AX88772D is a USB 2.0 device. It is very similar to AX88179A overall.
The most significant difference is that AX88179A supports 1000Mbps speeds
while AX88772D does not.
grammer fix from jmc@
ok miod@
Diffstat (limited to 'sys/dev/usb/if_axenreg.h')
-rw-r--r-- | sys/dev/usb/if_axenreg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/if_axenreg.h b/sys/dev/usb/if_axenreg.h index 98be650b5eb..86ca2699a79 100644 --- a/sys/dev/usb/if_axenreg.h +++ b/sys/dev/usb/if_axenreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_axenreg.h,v 1.7 2024/01/04 08:41:59 kevlo Exp $ */ +/* $OpenBSD: if_axenreg.h,v 1.8 2024/10/07 07:35:40 kevlo Exp $ */ /* * Copyright (c) 2013 Yojiro UO <yuo@openbsd.org>. All right reserved. @@ -228,6 +228,7 @@ struct axen_type { #define AX178A 0x0001 /* AX88178a */ #define AX179 0x0002 /* AX88179 */ #define AX179A 0x0004 /* AX88179a */ +#define AX772D 0x0008 /* AX88772d */ }; struct axen_softc; |