mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix the argument specifier for the PnP BIOS function 2
(PNP_SET_DEVNODE). The second argument is not a segment:offset pointer, but a 16 bit short. MFC after: 4 weeks
This commit is contained in:
parent
6533ba2e33
commit
bdaeb9cc90
2 changed files with 2 additions and 2 deletions
|
|
@ -171,7 +171,7 @@ struct bios_args {
|
|||
*/
|
||||
#define PNP_COUNT_DEVNODES "sppD", 0x00
|
||||
#define PNP_GET_DEVNODE "sppsD", 0x01
|
||||
#define PNP_SET_DEVNODE "sppsD", 0x02
|
||||
#define PNP_SET_DEVNODE "sspsD", 0x02
|
||||
#define PNP_GET_EVENT "spD", 0x03
|
||||
#define PNP_SEND_MSG "ssD", 0x04
|
||||
#define PNP_GET_DOCK_INFO "spD", 0x05
|
||||
|
|
|
|||
|
|
@ -171,7 +171,7 @@ struct bios_args {
|
|||
*/
|
||||
#define PNP_COUNT_DEVNODES "sppD", 0x00
|
||||
#define PNP_GET_DEVNODE "sppsD", 0x01
|
||||
#define PNP_SET_DEVNODE "sppsD", 0x02
|
||||
#define PNP_SET_DEVNODE "sspsD", 0x02
|
||||
#define PNP_GET_EVENT "spD", 0x03
|
||||
#define PNP_SEND_MSG "ssD", 0x04
|
||||
#define PNP_GET_DOCK_INFO "spD", 0x05
|
||||
|
|
|
|||
Loading…
Reference in a new issue