aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/zorro
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2010-06-09 05:24:32 -0400
committerGeert Uytterhoeven <geert@linux-m68k.org>2010-08-09 15:14:08 -0400
commit2190a1e7705456c2298873b2547a6eb19b8e31ae (patch)
tree5af2f0231c592c63fdfbb99cf45af650edfcce15 /drivers/zorro
parentd50ac468dd023db32c9455b2df56237caf601cbd (diff)
zorro: Fix reading of proc/bus/zorro/* in small chunks
proc_bus_zorro_read() didn't take into account the current file position, hence it always read from the start of the ConfigDev. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'drivers/zorro')
-rw-r--r--drivers/zorro/proc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/zorro/proc.c b/drivers/zorro/proc.c
index 4f4ea88fbb7..cafc5045429 100644
--- a/drivers/zorro/proc.c
+++ b/drivers/zorro/proc.c
@@ -68,7 +68,7 @@ proc_bus_zorro_read(struct file *file, char __user *buf, size_t nbytes, loff_t *
68 cd.cd_BoardAddr = (void *)zorro_resource_start(z); 68 cd.cd_BoardAddr = (void *)zorro_resource_start(z);
69 cd.cd_BoardSize = zorro_resource_len(z); 69 cd.cd_BoardSize = zorro_resource_len(z);
70 70
71 if (copy_to_user(buf, &cd, nbytes)) 71 if (copy_to_user(buf, (void *)&cd + pos, nbytes))
72 return -EFAULT; 72 return -EFAULT;
73 *ppos += nbytes; 73 *ppos += nbytes;
74 74