提交 d7e530d2 编写于 作者: B Bill Pemberton 提交者: 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: NBill Pemberton <wfp5p@virginia.edu>
Cc: Martyn Welch <martyn.welch@ge.com>
Cc: Manohar Vanga <manohar.vanga@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 59cb218e
......@@ -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];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册