Commit d537dd3d authored by Colin Leroy's avatar Colin Leroy Committed by Linus Torvalds

[PATCH] Warning fix in drivers/macintosh/macio-adb.c

This one fixes another unitialized var warning (which is harmless, but
whatever).
Signed-off-by: default avatarColin Leroy <colin@colino.net>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8c56ec12
......@@ -202,7 +202,7 @@ static irqreturn_t macio_adb_interrupt(int irq, void *arg,
struct pt_regs *regs)
{
int i, n, err;
struct adb_request *req;
struct adb_request *req = NULL;
unsigned char ibuf[16];
int ibuf_len = 0;
int complete = 0;
......
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