Skip to content

Commit

Permalink
drivers/memstick/host/tifm_ms.c breakage
Browse files Browse the repository at this point in the history
writel(sock + ...) that should've been writel(sock->addr + ...)

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Al Viro authored and Linus Torvalds committed Feb 13, 2008
1 parent 39ed7ad commit 282ea44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/memstick/host/tifm_ms.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ static int tifm_ms_issue_cmd(struct tifm_ms *host)

writel(TIFM_MS_SYS_LATCH
| readl(sock->addr + SOCK_MS_SYSTEM),
sock + SOCK_MS_SYSTEM);
sock->addr + SOCK_MS_SYSTEM);
writel(0, sock->addr + SOCK_MS_DATA);
dev_dbg(&sock->dev, "writing %x\n", 0);

Expand Down

0 comments on commit 282ea44

Please sign in to comment.