Commit d7e530d2 authored by Bill Pemberton's avatar Bill Pemberton Committed by Greg Kroah-Hartman

staging: vme: remove use of __devinit

CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: default avatarBill Pemberton <wfp5p@virginia.edu>
Cc: Martyn Welch <martyn.welch@ge.com>
Cc: Manohar Vanga <manohar.vanga@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 59cb218e
...@@ -243,7 +243,7 @@ struct pio2_card { ...@@ -243,7 +243,7 @@ struct pio2_card {
int pio2_cntr_reset(struct pio2_card *); int pio2_cntr_reset(struct pio2_card *);
int pio2_gpio_reset(struct pio2_card *); int pio2_gpio_reset(struct pio2_card *);
int __devinit pio2_gpio_init(struct pio2_card *); int pio2_gpio_init(struct pio2_card *);
void pio2_gpio_exit(struct pio2_card *); void pio2_gpio_exit(struct pio2_card *);
#endif /* _VME_PIO2_H_ */ #endif /* _VME_PIO2_H_ */
...@@ -42,7 +42,7 @@ static int variant_num; ...@@ -42,7 +42,7 @@ static int variant_num;
static bool loopback; static bool loopback;
static int pio2_match(struct vme_dev *); static int pio2_match(struct vme_dev *);
static int __devinit pio2_probe(struct vme_dev *); static int pio2_probe(struct vme_dev *);
static int __devexit pio2_remove(struct vme_dev *); static int __devexit pio2_remove(struct vme_dev *);
static int pio2_get_led(struct pio2_card *card) static int pio2_get_led(struct pio2_card *card)
...@@ -222,7 +222,7 @@ static int pio2_match(struct vme_dev *vdev) ...@@ -222,7 +222,7 @@ static int pio2_match(struct vme_dev *vdev)
return 1; return 1;
} }
static int __devinit pio2_probe(struct vme_dev *vdev) static int pio2_probe(struct vme_dev *vdev)
{ {
struct pio2_card *card; struct pio2_card *card;
int retval; int retval;
......
...@@ -186,7 +186,7 @@ int pio2_gpio_reset(struct pio2_card *card) ...@@ -186,7 +186,7 @@ int pio2_gpio_reset(struct pio2_card *card)
return 0; return 0;
} }
int __devinit pio2_gpio_init(struct pio2_card *card) int pio2_gpio_init(struct pio2_card *card)
{ {
int retval = 0; int retval = 0;
char *label; char *label;
......
...@@ -137,7 +137,7 @@ static loff_t vme_user_llseek(struct file *, loff_t, int); ...@@ -137,7 +137,7 @@ static loff_t vme_user_llseek(struct file *, loff_t, int);
static long vme_user_unlocked_ioctl(struct file *, unsigned int, unsigned long); static long vme_user_unlocked_ioctl(struct file *, unsigned int, unsigned long);
static int vme_user_match(struct vme_dev *); static int vme_user_match(struct vme_dev *);
static int __devinit vme_user_probe(struct vme_dev *); static int vme_user_probe(struct vme_dev *);
static int __devexit vme_user_remove(struct vme_dev *); static int __devexit vme_user_remove(struct vme_dev *);
static const struct file_operations vme_user_fops = { static const struct file_operations vme_user_fops = {
...@@ -673,7 +673,7 @@ static int vme_user_match(struct vme_dev *vdev) ...@@ -673,7 +673,7 @@ static int vme_user_match(struct vme_dev *vdev)
* as practical. We will therefore reserve the buffers and request the images * as practical. We will therefore reserve the buffers and request the images
* here so that we don't have to do it later. * here so that we don't have to do it later.
*/ */
static int __devinit vme_user_probe(struct vme_dev *vdev) static int vme_user_probe(struct vme_dev *vdev)
{ {
int i, err; int i, err;
char name[12]; char name[12];
......
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