parport: gsc: mark init function static

This is only used locally, so mark it static to avoid a warning:

drivers/parport/parport_gsc.c:395:5: error: no previous prototype for 'parport_gsc_init' [-Werror=missing-prototypes]

Acked-by: Helge Deller <deller@gmx.de>
Acked-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Helge Deller <deller@gmx.de>

authored by Arnd Bergmann and committed by Helge Deller 8e8e46a6 166b0110

Changed files
+1 -1
drivers
parport
+1 -1
drivers/parport/parport_gsc.c
··· 392 392 .remove = __exit_p(parport_remove_chip), 393 393 }; 394 394 395 - int parport_gsc_init(void) 395 + static int parport_gsc_init(void) 396 396 { 397 397 return register_parisc_driver(&parport_driver); 398 398 }