Commit ae8aed03 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] saa6588 __user annotations

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent be88ec74
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
struct rds_command { struct rds_command {
unsigned int block_count; unsigned int block_count;
int result; int result;
unsigned char *buffer; unsigned char __user *buffer;
struct file *instance; struct file *instance;
poll_table *event_list; poll_table *event_list;
}; };
......
...@@ -157,7 +157,7 @@ static struct i2c_client client_template; ...@@ -157,7 +157,7 @@ static struct i2c_client client_template;
/* ---------------------------------------------------------------------- */ /* ---------------------------------------------------------------------- */
static int block_to_user_buf(struct saa6588 *s, unsigned char *user_buf) static int block_to_user_buf(struct saa6588 *s, unsigned char __user *user_buf)
{ {
int i; int i;
...@@ -191,7 +191,7 @@ static void read_from_buf(struct saa6588 *s, struct rds_command *a) ...@@ -191,7 +191,7 @@ static void read_from_buf(struct saa6588 *s, struct rds_command *a)
{ {
unsigned long flags; unsigned long flags;
unsigned char *buf_ptr = a->buffer; /* This is a user space buffer! */ unsigned char __user *buf_ptr = a->buffer;
unsigned int i; unsigned int i;
unsigned int rd_blocks; unsigned int rd_blocks;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment