Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54639
b: refs/heads/master
c: 4f911d6
h: refs/heads/master
i:
  54637: 1b645f3
  54635: baf468c
  54631: 8da34c2
  54623: 7968207
v: v3
  • Loading branch information
Russell King authored and Linus Torvalds committed May 8, 2007
1 parent 6d14164 commit b543c73
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 62456726d715042e1976b830c59fd73f41c4aaa6
refs/heads/master: 4f911d64e04a44c47985be30f978fb3c2efcee0c
6 changes: 6 additions & 0 deletions trunk/drivers/char/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1071,5 +1071,11 @@ config TELCLOCK
/sys/devices/platform/telco_clock, with a number of files for
controlling the behavior of this hardware.

config DEVPORT
bool
depends on !M68K
depends on ISA || PCI
default y

endmenu

8 changes: 4 additions & 4 deletions trunk/drivers/char/mem.c
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ static ssize_t write_kmem(struct file * file, const char __user * buf,
return virtr + wrote;
}

#if (defined(CONFIG_ISA) || defined(CONFIG_PCI)) && !defined(__mc68000__)
#ifdef CONFIG_DEVPORT
static ssize_t read_port(struct file * file, char __user * buf,
size_t count, loff_t *ppos)
{
Expand Down Expand Up @@ -834,7 +834,7 @@ static const struct file_operations null_fops = {
.splice_write = splice_write_null,
};

#if (defined(CONFIG_ISA) || defined(CONFIG_PCI)) && !defined(__mc68000__)
#ifdef CONFIG_DEVPORT
static const struct file_operations port_fops = {
.llseek = memory_lseek,
.read = read_port,
Expand Down Expand Up @@ -912,7 +912,7 @@ static int memory_open(struct inode * inode, struct file * filp)
case 3:
filp->f_op = &null_fops;
break;
#if (defined(CONFIG_ISA) || defined(CONFIG_PCI)) && !defined(__mc68000__)
#ifdef CONFIG_DEVPORT
case 4:
filp->f_op = &port_fops;
break;
Expand Down Expand Up @@ -959,7 +959,7 @@ static const struct {
{1, "mem", S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops},
{2, "kmem", S_IRUSR | S_IWUSR | S_IRGRP, &kmem_fops},
{3, "null", S_IRUGO | S_IWUGO, &null_fops},
#if (defined(CONFIG_ISA) || defined(CONFIG_PCI)) && !defined(__mc68000__)
#ifdef CONFIG_DEVPORT
{4, "port", S_IRUSR | S_IWUSR | S_IRGRP, &port_fops},
#endif
{5, "zero", S_IRUGO | S_IWUGO, &zero_fops},
Expand Down

0 comments on commit b543c73

Please sign in to comment.