diff options
Diffstat (limited to 'drivers/char/scx200_gpio.c')
-rw-r--r-- | drivers/char/scx200_gpio.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/char/scx200_gpio.c b/drivers/char/scx200_gpio.c index 442367b3f5dc..5a280a330401 100644 --- a/drivers/char/scx200_gpio.c +++ b/drivers/char/scx200_gpio.c | |||
@@ -35,14 +35,6 @@ static int major = 0; /* default to dynamic major */ | |||
35 | module_param(major, int, 0); | 35 | module_param(major, int, 0); |
36 | MODULE_PARM_DESC(major, "Major device number"); | 36 | MODULE_PARM_DESC(major, "Major device number"); |
37 | 37 | ||
38 | extern void nsc_gpio_dump(unsigned index); | ||
39 | |||
40 | extern ssize_t nsc_gpio_write(struct file *file, const char __user *data, | ||
41 | size_t len, loff_t *ppos); | ||
42 | |||
43 | extern ssize_t nsc_gpio_read(struct file *file, char __user *buf, | ||
44 | size_t len, loff_t *ppos); | ||
45 | |||
46 | struct nsc_gpio_ops scx200_access = { | 38 | struct nsc_gpio_ops scx200_access = { |
47 | .owner = THIS_MODULE, | 39 | .owner = THIS_MODULE, |
48 | .gpio_config = scx200_gpio_configure, | 40 | .gpio_config = scx200_gpio_configure, |
@@ -101,6 +93,9 @@ static int __init scx200_gpio_init(void) | |||
101 | if (rc) | 93 | if (rc) |
102 | goto undo_malloc; | 94 | goto undo_malloc; |
103 | 95 | ||
96 | /* nsc_gpio uses dev_dbg(), so needs this */ | ||
97 | scx200_access.dev = &pdev->dev; | ||
98 | |||
104 | if (major) | 99 | if (major) |
105 | rc = register_chrdev_region(dev, num_pins, "scx200_gpio"); | 100 | rc = register_chrdev_region(dev, num_pins, "scx200_gpio"); |
106 | else { | 101 | else { |