diff options
Diffstat (limited to 'drivers/char/mem.c')
| -rw-r--r-- | drivers/char/mem.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/char/mem.c b/drivers/char/mem.c index 704c3c07f0ab..29c41f4418c0 100644 --- a/drivers/char/mem.c +++ b/drivers/char/mem.c | |||
| @@ -534,7 +534,7 @@ static ssize_t write_kmem(struct file * file, const char __user * buf, | |||
| 534 | return virtr + wrote; | 534 | return virtr + wrote; |
| 535 | } | 535 | } |
| 536 | 536 | ||
| 537 | #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI)) | 537 | #if defined(CONFIG_ISA) || !defined(__mc68000__) |
| 538 | static ssize_t read_port(struct file * file, char __user * buf, | 538 | static ssize_t read_port(struct file * file, char __user * buf, |
| 539 | size_t count, loff_t *ppos) | 539 | size_t count, loff_t *ppos) |
| 540 | { | 540 | { |
| @@ -795,7 +795,7 @@ static struct file_operations null_fops = { | |||
| 795 | .write = write_null, | 795 | .write = write_null, |
| 796 | }; | 796 | }; |
| 797 | 797 | ||
| 798 | #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI)) | 798 | #if defined(CONFIG_ISA) || !defined(__mc68000__) |
| 799 | static struct file_operations port_fops = { | 799 | static struct file_operations port_fops = { |
| 800 | .llseek = memory_lseek, | 800 | .llseek = memory_lseek, |
| 801 | .read = read_port, | 801 | .read = read_port, |
| @@ -865,7 +865,7 @@ static int memory_open(struct inode * inode, struct file * filp) | |||
| 865 | case 3: | 865 | case 3: |
| 866 | filp->f_op = &null_fops; | 866 | filp->f_op = &null_fops; |
| 867 | break; | 867 | break; |
| 868 | #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI)) | 868 | #if defined(CONFIG_ISA) || !defined(__mc68000__) |
| 869 | case 4: | 869 | case 4: |
| 870 | filp->f_op = &port_fops; | 870 | filp->f_op = &port_fops; |
| 871 | break; | 871 | break; |
| @@ -912,7 +912,7 @@ static const struct { | |||
| 912 | {1, "mem", S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops}, | 912 | {1, "mem", S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops}, |
| 913 | {2, "kmem", S_IRUSR | S_IWUSR | S_IRGRP, &kmem_fops}, | 913 | {2, "kmem", S_IRUSR | S_IWUSR | S_IRGRP, &kmem_fops}, |
| 914 | {3, "null", S_IRUGO | S_IWUGO, &null_fops}, | 914 | {3, "null", S_IRUGO | S_IWUGO, &null_fops}, |
| 915 | #if (defined(CONFIG_ISA) || !defined(__mc68000__)) && (!defined(CONFIG_PPC_ISERIES) || defined(CONFIG_PCI)) | 915 | #if defined(CONFIG_ISA) || !defined(__mc68000__) |
| 916 | {4, "port", S_IRUSR | S_IWUSR | S_IRGRP, &port_fops}, | 916 | {4, "port", S_IRUSR | S_IWUSR | S_IRGRP, &port_fops}, |
| 917 | #endif | 917 | #endif |
| 918 | {5, "zero", S_IRUGO | S_IWUGO, &zero_fops}, | 918 | {5, "zero", S_IRUGO | S_IWUGO, &zero_fops}, |
