diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-14 10:12:23 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-14 10:12:23 +0000 |
commit | 4154c668f24da79672099dfac06f5263c415fee0 (patch) | |
tree | 260835bf16506bce6bc8f3837a16a352c679c486 /src/northbridge/via/vt8623 | |
parent | c264ad930a2579dc235de0c95842374e89ff5d6a (diff) |
zero warnings days. Down to under 600 different warnings
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5425 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge/via/vt8623')
-rw-r--r-- | src/northbridge/via/vt8623/northbridge.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/northbridge/via/vt8623/northbridge.c b/src/northbridge/via/vt8623/northbridge.c index 7d33e44236..5023edb546 100644 --- a/src/northbridge/via/vt8623/northbridge.c +++ b/src/northbridge/via/vt8623/northbridge.c @@ -60,7 +60,10 @@ static void northbridge_init(device_t dev) } } -static void nullfunc(){} +static void nullfunc(void) +{ + /* Nothing to do */ +} static struct device_operations northbridge_operations = { .read_resources = nullfunc, @@ -104,7 +107,7 @@ static const struct pci_driver agp_driver __pci_driver = { static void vga_init(device_t dev) { -// unsigned long fb; + //unsigned long fb; //msr_t clocks1,clocks2,instructions,setup; printk(BIOS_DEBUG, "VGA random fixup ...\n"); |