diff options
-rw-r--r-- | sys/amd64/amd64/bios.c | 6 | ||||
-rw-r--r-- | sys/i386/i386/bios.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/amd64/amd64/bios.c b/sys/amd64/amd64/bios.c index 6e0837c..d45edc7 100644 --- a/sys/amd64/amd64/bios.c +++ b/sys/amd64/amd64/bios.c @@ -56,10 +56,10 @@ #define BIOS_SIZE 0x20000 /* exported lookup results */ -struct bios32_SDentry PCIbios = {entry : 0}; -struct PnPBIOS_table *PnPBIOStable = 0; +struct bios32_SDentry PCIbios; +struct PnPBIOS_table *PnPBIOStable; -static u_int bios32_SDCI = 0; +static u_int bios32_SDCI; /* start fairly early */ static void bios32_init(void *junk); diff --git a/sys/i386/i386/bios.c b/sys/i386/i386/bios.c index 6e0837c..d45edc7 100644 --- a/sys/i386/i386/bios.c +++ b/sys/i386/i386/bios.c @@ -56,10 +56,10 @@ #define BIOS_SIZE 0x20000 /* exported lookup results */ -struct bios32_SDentry PCIbios = {entry : 0}; -struct PnPBIOS_table *PnPBIOStable = 0; +struct bios32_SDentry PCIbios; +struct PnPBIOS_table *PnPBIOStable; -static u_int bios32_SDCI = 0; +static u_int bios32_SDCI; /* start fairly early */ static void bios32_init(void *junk); |