[POWERPC] init and exit markings for hvc_iseries

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>

authored by Stephen Rothwell and committed by Paul Mackerras 1ad528eb a6dfe1dc

+4 -4
+4 -4
drivers/char/hvc_iseries.c
··· 472 472 } 473 473 } 474 474 475 - static int send_open(HvLpIndex remoteLp, void *sem) 475 + static int __init send_open(HvLpIndex remoteLp, void *sem) 476 476 { 477 477 return HvCallEvent_signalLpEventFast(remoteLp, 478 478 HvLpEvent_Type_VirtualIo, ··· 484 484 0, 0, 0, 0); 485 485 } 486 486 487 - static int hvc_vio_init(void) 487 + static int __init hvc_vio_init(void) 488 488 { 489 489 atomic_t wait_flag; 490 490 int rc; ··· 552 552 } 553 553 module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */ 554 554 555 - static void hvc_vio_exit(void) 555 + static void __exit hvc_vio_exit(void) 556 556 { 557 557 vio_unregister_driver(&hvc_vio_driver); 558 558 } 559 559 module_exit(hvc_vio_exit); 560 560 561 561 /* the device tree order defines our numbering */ 562 - static int hvc_find_vtys(void) 562 + static int __init hvc_find_vtys(void) 563 563 { 564 564 struct device_node *vty; 565 565 int num_found = 0;