summaryrefslogtreecommitdiff
path: root/drivers/staging/vme/devices/vme_pio2_core.c
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2012-11-19 18:21:56 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-11-21 23:05:00 (GMT)
commitd7e530d26ba3dc59753e0d0b04fecdbb1f394c38 (patch)
treed9da77186505a960f79ca91dfb6e1c65ea222bc1 /drivers/staging/vme/devices/vme_pio2_core.c
parent59cb218e7d3e58dd466f14fe341901695e6a65f4 (diff)
downloadlinux-d7e530d26ba3dc59753e0d0b04fecdbb1f394c38.tar.xz
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>
Diffstat (limited to 'drivers/staging/vme/devices/vme_pio2_core.c')
-rw-r--r--drivers/staging/vme/devices/vme_pio2_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/vme/devices/vme_pio2_core.c b/drivers/staging/vme/devices/vme_pio2_core.c
index 35c5a14..35880a3 100644
--- a/drivers/staging/vme/devices/vme_pio2_core.c
+++ b/drivers/staging/vme/devices/vme_pio2_core.c
@@ -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;