Commit 7a4e572b authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB brlvger: Forward port 2.4 fix for misuse of types.

Thanks to Dave Jones for pointing this out.
parent 6046b3ca
......@@ -589,7 +589,8 @@ brlvger_write(struct file *file, const char *buffer,
struct brlvger_priv *priv = file->private_data;
char buf[MAX_BRLVGER_CELLS];
int ret;
int rs, off;
size_t rs;
loff_t off;
__u16 written;
if(!priv->dev)
......
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