V4L/DVB (13683): sanio-ms: clean up init, exit and id_table

MIME-Version: 1.0
Content-Transfer-Encoding: 8bit

Make module_init static and mark it with __init.
Make module_exit static and mark it with __exit.
Mark probe functions with __devinit.
Make id table static and mark with __devinitconst.

This will eliminate the following sparse warnings (see "make C=1"):
 * smsdvb.c:668:5: warning: symbol 'smsdvb_module_init' was not declared. Should it be static?
 * smsdvb.c:682:6: warning: symbol 'smsdvb_module_exit' was not declared. Should it be static?
 * smsusb.c:491:22: warning: symbol 'smsusb_id_table' was not declared. Should it be static?
 * smsusb.c:567:5: warning: symbol 'smsusb_module_init' was not declared. Should it be static?
 * smsusb.c:578:6: warning: symbol 'smsusb_module_exit' was not declared. Should it be static?
 * smssdio.c:341:5: warning: symbol 'smssdio_module_init' was not declared. Should it be static?
 * smssdio.c:353:6: warning: symbol 'smssdio_module_exit' was not declared. Should it be static?

Signed-off-by: Márton Németh <nm127@freemail.hu>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Márton Németh 2009-12-11 20:05:10 -03:00 committed by Mauro Carvalho Chehab
parent 3839a0dc1c
commit 2184dda0d4
3 changed files with 10 additions and 10 deletions

View file

@ -662,7 +662,7 @@ static int smsdvb_hotplug(struct smscore_device_t *coredev,
return rc;
}
int smsdvb_module_init(void)
static int __init smsdvb_module_init(void)
{
int rc;
@ -676,7 +676,7 @@ int smsdvb_module_init(void)
return rc;
}
void smsdvb_module_exit(void)
static void __exit smsdvb_module_exit(void)
{
smscore_unregister_hotplug(smsdvb_hotplug);

View file

@ -48,7 +48,7 @@
#define SMSSDIO_INT 0x04
#define SMSSDIO_BLOCK_SIZE 128
static const struct sdio_device_id smssdio_ids[] = {
static const struct sdio_device_id smssdio_ids[] __devinitconst = {
{SDIO_DEVICE(SDIO_VENDOR_ID_SIANO, SDIO_DEVICE_ID_SIANO_STELLAR),
.driver_data = SMS1XXX_BOARD_SIANO_STELLAR},
{SDIO_DEVICE(SDIO_VENDOR_ID_SIANO, SDIO_DEVICE_ID_SIANO_NOVA_A0),
@ -222,7 +222,7 @@ static void smssdio_interrupt(struct sdio_func *func)
smscore_onresponse(smsdev->coredev, cb);
}
static int smssdio_probe(struct sdio_func *func,
static int __devinit smssdio_probe(struct sdio_func *func,
const struct sdio_device_id *id)
{
int ret;
@ -338,7 +338,7 @@ static struct sdio_driver smssdio_driver = {
/* Module functions */
/*******************************************************************/
int smssdio_module_init(void)
static int __init smssdio_module_init(void)
{
int ret = 0;
@ -350,7 +350,7 @@ int smssdio_module_init(void)
return ret;
}
void smssdio_module_exit(void)
static void __exit smssdio_module_exit(void)
{
sdio_unregister_driver(&smssdio_driver);
}

View file

@ -390,7 +390,7 @@ static int smsusb_init_device(struct usb_interface *intf, int board_id)
return rc;
}
static int smsusb_probe(struct usb_interface *intf,
static int __devinit smsusb_probe(struct usb_interface *intf,
const struct usb_device_id *id)
{
struct usb_device *udev = interface_to_usbdev(intf);
@ -484,7 +484,7 @@ static int smsusb_resume(struct usb_interface *intf)
return 0;
}
struct usb_device_id smsusb_id_table[] = {
static const struct usb_device_id smsusb_id_table[] __devinitconst = {
{ USB_DEVICE(0x187f, 0x0010),
.driver_info = SMS1XXX_BOARD_SIANO_STELLAR },
{ USB_DEVICE(0x187f, 0x0100),
@ -560,7 +560,7 @@ static struct usb_driver smsusb_driver = {
.resume = smsusb_resume,
};
int smsusb_module_init(void)
static int __init smsusb_module_init(void)
{
int rc = usb_register(&smsusb_driver);
if (rc)
@ -571,7 +571,7 @@ int smsusb_module_init(void)
return rc;
}
void smsusb_module_exit(void)
static void __exit smsusb_module_exit(void)
{
/* Regular USB Cleanup */
usb_deregister(&smsusb_driver);