Commit d6740d86 authored by David Härdeman's avatar David Härdeman Committed by Mauro Carvalho Chehab

[media] rc-core: fix various sparse warnings

Fix various sparse warnings under drivers/media/rc/*.c, mostly
by making functions static.
Signed-off-by: default avatarDavid Härdeman <david@hardeman.nu>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 4924a311
...@@ -686,12 +686,12 @@ static struct pnp_driver fintek_driver = { ...@@ -686,12 +686,12 @@ static struct pnp_driver fintek_driver = {
.shutdown = fintek_shutdown, .shutdown = fintek_shutdown,
}; };
static int fintek_init(void) static int __init fintek_init(void)
{ {
return pnp_register_driver(&fintek_driver); return pnp_register_driver(&fintek_driver);
} }
static void fintek_exit(void) static void __exit fintek_exit(void)
{ {
pnp_unregister_driver(&fintek_driver); pnp_unregister_driver(&fintek_driver);
} }
......
...@@ -78,11 +78,11 @@ static int display_open(struct inode *inode, struct file *file); ...@@ -78,11 +78,11 @@ static int display_open(struct inode *inode, struct file *file);
static int display_close(struct inode *inode, struct file *file); static int display_close(struct inode *inode, struct file *file);
/* VFD write operation */ /* VFD write operation */
static ssize_t vfd_write(struct file *file, const char *buf, static ssize_t vfd_write(struct file *file, const char __user *buf,
size_t n_bytes, loff_t *pos); size_t n_bytes, loff_t *pos);
/* LCD file_operations override function prototypes */ /* LCD file_operations override function prototypes */
static ssize_t lcd_write(struct file *file, const char *buf, static ssize_t lcd_write(struct file *file, const char __user *buf,
size_t n_bytes, loff_t *pos); size_t n_bytes, loff_t *pos);
/*** G L O B A L S ***/ /*** G L O B A L S ***/
...@@ -825,7 +825,7 @@ static struct attribute_group imon_rf_attr_group = { ...@@ -825,7 +825,7 @@ static struct attribute_group imon_rf_attr_group = {
* than 32 bytes are provided spaces will be appended to * than 32 bytes are provided spaces will be appended to
* generate a full screen. * generate a full screen.
*/ */
static ssize_t vfd_write(struct file *file, const char *buf, static ssize_t vfd_write(struct file *file, const char __user *buf,
size_t n_bytes, loff_t *pos) size_t n_bytes, loff_t *pos)
{ {
int i; int i;
...@@ -912,7 +912,7 @@ static ssize_t vfd_write(struct file *file, const char *buf, ...@@ -912,7 +912,7 @@ static ssize_t vfd_write(struct file *file, const char *buf,
* display whatever diacritics you need, and so on), but it's also * display whatever diacritics you need, and so on), but it's also
* a lot more complicated than most LCDs... * a lot more complicated than most LCDs...
*/ */
static ssize_t lcd_write(struct file *file, const char *buf, static ssize_t lcd_write(struct file *file, const char __user *buf,
size_t n_bytes, loff_t *pos) size_t n_bytes, loff_t *pos)
{ {
int retval = 0; int retval = 0;
......
...@@ -1709,12 +1709,12 @@ static struct pnp_driver ite_driver = { ...@@ -1709,12 +1709,12 @@ static struct pnp_driver ite_driver = {
.shutdown = ite_shutdown, .shutdown = ite_shutdown,
}; };
static int ite_init(void) static int __init ite_init(void)
{ {
return pnp_register_driver(&ite_driver); return pnp_register_driver(&ite_driver);
} }
static void ite_exit(void) static void __exit ite_exit(void)
{ {
pnp_unregister_driver(&ite_driver); pnp_unregister_driver(&ite_driver);
} }
......
...@@ -1221,12 +1221,12 @@ static struct pnp_driver nvt_driver = { ...@@ -1221,12 +1221,12 @@ static struct pnp_driver nvt_driver = {
.shutdown = nvt_shutdown, .shutdown = nvt_shutdown,
}; };
static int nvt_init(void) static int __init nvt_init(void)
{ {
return pnp_register_driver(&nvt_driver); return pnp_register_driver(&nvt_driver);
} }
static void nvt_exit(void) static void __exit nvt_exit(void)
{ {
pnp_unregister_driver(&nvt_driver); pnp_unregister_driver(&nvt_driver);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment