diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2019-04-15 00:37:53 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2019-04-15 00:37:53 +0000 |
commit | 40c87551c515d086f8b77c1e97ab6c423d0d99e9 (patch) | |
tree | 98bacb842a5df8a8155c614dbbfe2bac1f604fe1 /sys/dev | |
parent | 8104f21b8cc0fb42e63495abf90bc9a03b5cfff2 (diff) |
there's some new errors that commands can complete with too
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_myxreg.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/if_myxreg.h b/sys/dev/pci/if_myxreg.h index 1e6b0241e9e..bc2429ca045 100644 --- a/sys/dev/pci/if_myxreg.h +++ b/sys/dev/pci/if_myxreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_myxreg.h,v 1.10 2019/04/15 00:28:29 dlg Exp $ */ +/* $OpenBSD: if_myxreg.h,v 1.11 2019/04/15 00:37:52 dlg Exp $ */ /* * Copyright (c) 2007 Reyk Floeter <reyk@openbsd.org> @@ -261,6 +261,10 @@ enum { MYXCMD_ERR_RES = 8, MYXCMD_ERR_MULTICAST = 9, MYXCMD_ERR_UNALIGNED = 10 + MYXCMD_ERR_NO_MDIO = 11, + MYXCMD_ERR_I2C_FAILURE = 12, + MYXCMD_ERR_I2C_ABSENT = 13, + MYXCMD_ERR_BAD_PCIE_LINK = 14, }; #endif /* _MYX_REG_H */ |