mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 06:49:29 -04:00
staging: vme: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer needed. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Martyn Welch <martyn.welch@ge.com> Cc: Manohar Vanga <manohar.vanga@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
59cb218e7d
commit
d7e530d26b
@@ -243,7 +243,7 @@ struct pio2_card {
|
||||
int pio2_cntr_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 *);
|
||||
|
||||
#endif /* _VME_PIO2_H_ */
|
||||
|
||||
@@ -42,7 +42,7 @@ static int variant_num;
|
||||
static bool loopback;
|
||||
|
||||
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 pio2_get_led(struct pio2_card *card)
|
||||
@@ -222,7 +222,7 @@ static int pio2_match(struct vme_dev *vdev)
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int __devinit pio2_probe(struct vme_dev *vdev)
|
||||
static int pio2_probe(struct vme_dev *vdev)
|
||||
{
|
||||
struct pio2_card *card;
|
||||
int retval;
|
||||
|
||||
@@ -186,7 +186,7 @@ int pio2_gpio_reset(struct pio2_card *card)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __devinit pio2_gpio_init(struct pio2_card *card)
|
||||
int pio2_gpio_init(struct pio2_card *card)
|
||||
{
|
||||
int retval = 0;
|
||||
char *label;
|
||||
|
||||
@@ -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 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 const struct file_operations vme_user_fops = {
|
||||
@@ -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
|
||||
* 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;
|
||||
char name[12];
|
||||
|
||||
Reference in New Issue
Block a user