[PARISC] parisc-agp: Fix thinko const-ifying

Can't really blame davej for mucking this up... static-ify
it while we're at it, which would have prevented this...

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

+1 -1
+1 -1
drivers/char/agp/parisc-agp.c
··· 210 agp_device_command(command, (mode & AGP8X_MODE) != 0); 211 } 212 213 - struct const agp_bridge_driver parisc_agp_driver = { 214 .owner = THIS_MODULE, 215 .size_type = FIXED_APER_SIZE, 216 .configure = parisc_agp_configure,
··· 210 agp_device_command(command, (mode & AGP8X_MODE) != 0); 211 } 212 213 + static const struct agp_bridge_driver parisc_agp_driver = { 214 .owner = THIS_MODULE, 215 .size_type = FIXED_APER_SIZE, 216 .configure = parisc_agp_configure,