aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/scx200_gpio.c
diff options
context:
space:
mode:
authorJim Cromie <jim.cromie@gmail.com>2006-07-14 03:24:26 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-07-15 00:53:54 -0400
commit2e8f7a3128bb8fac8351a994f1fc325717899308 (patch)
tree9c9169220013caa62887a6d40725589f896de0b3 /drivers/char/scx200_gpio.c
parentabecb6da704a71232a3103c8485c65ceb5fcd9dc (diff)
[PATCH] gpio: rename exported vtables to better match purpose
- rename EXPORTed gpio vtables from {scx200,pc8736x}_access to _gpio_ops new name is much closer to the vtable-name struct nsc_gpio_ops, should be clearer. Also rename the _fops vtable var to _fileops to better disambiguate it from the gpio vtable. Signed-off-by: Jim Cromie <jim.cromie@gmail.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/scx200_gpio.c')
-rw-r--r--drivers/char/scx200_gpio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/char/scx200_gpio.c b/drivers/char/scx200_gpio.c
index f65372b5a656..b956c7babd18 100644
--- a/drivers/char/scx200_gpio.c
+++ b/drivers/char/scx200_gpio.c
@@ -35,7 +35,7 @@ MODULE_PARM_DESC(major, "Major device number");
35 35
36#define MAX_PINS 32 /* 64 later, when known ok */ 36#define MAX_PINS 32 /* 64 later, when known ok */
37 37
38struct nsc_gpio_ops scx200_access = { 38struct nsc_gpio_ops scx200_gpio_ops = {
39 .owner = THIS_MODULE, 39 .owner = THIS_MODULE,
40 .gpio_config = scx200_gpio_configure, 40 .gpio_config = scx200_gpio_configure,
41 .gpio_dump = nsc_gpio_dump, 41 .gpio_dump = nsc_gpio_dump,
@@ -44,12 +44,12 @@ struct nsc_gpio_ops scx200_access = {
44 .gpio_change = scx200_gpio_change, 44 .gpio_change = scx200_gpio_change,
45 .gpio_current = scx200_gpio_current 45 .gpio_current = scx200_gpio_current
46}; 46};
47EXPORT_SYMBOL(scx200_access); 47EXPORT_SYMBOL(scx200_gpio_ops);
48 48
49static int scx200_gpio_open(struct inode *inode, struct file *file) 49static int scx200_gpio_open(struct inode *inode, struct file *file)
50{ 50{
51 unsigned m = iminor(inode); 51 unsigned m = iminor(inode);
52 file->private_data = &scx200_access; 52 file->private_data = &scx200_gpio_ops;
53 53
54 if (m >= MAX_PINS) 54 if (m >= MAX_PINS)
55 return -EINVAL; 55 return -EINVAL;
@@ -61,7 +61,7 @@ static int scx200_gpio_release(struct inode *inode, struct file *file)
61 return 0; 61 return 0;
62} 62}
63 63
64static const struct file_operations scx200_gpio_fops = { 64static const struct file_operations scx200_gpio_fileops = {
65 .owner = THIS_MODULE, 65 .owner = THIS_MODULE,
66 .write = nsc_gpio_write, 66 .write = nsc_gpio_write,
67 .read = nsc_gpio_read, 67 .read = nsc_gpio_read,
@@ -91,7 +91,7 @@ static int __init scx200_gpio_init(void)
91 goto undo_malloc; 91 goto undo_malloc;
92 92
93 /* nsc_gpio uses dev_dbg(), so needs this */ 93 /* nsc_gpio uses dev_dbg(), so needs this */
94 scx200_access.dev = &pdev->dev; 94 scx200_gpio_ops.dev = &pdev->dev;
95 95
96 if (major) { 96 if (major) {
97 devid = MKDEV(major, 0); 97 devid = MKDEV(major, 0);
@@ -105,7 +105,7 @@ static int __init scx200_gpio_init(void)
105 goto undo_platform_device_add; 105 goto undo_platform_device_add;
106 } 106 }
107 107
108 cdev_init(&scx200_gpio_cdev, &scx200_gpio_fops); 108 cdev_init(&scx200_gpio_cdev, &scx200_gpio_fileops);
109 cdev_add(&scx200_gpio_cdev, devid, MAX_PINS); 109 cdev_add(&scx200_gpio_cdev, devid, MAX_PINS);
110 110
111 return 0; /* succeed */ 111 return 0; /* succeed */