Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33324
b: refs/heads/master
c: 916f3ac
h: refs/heads/master
v: v3
  • Loading branch information
Pierre Ossman authored and Russell King committed Aug 6, 2006
1 parent a25a16a commit c7b1b83
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c723e08af18e60cda3bbc90e0d6fb688587aeb9f
refs/heads/master: 916f3ac680fcc4c142e9acd46161f55533b11760
6 changes: 3 additions & 3 deletions trunk/drivers/mmc/wbsd.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include "wbsd.h"

#define DRIVER_NAME "wbsd"
#define DRIVER_VERSION "1.5"
#define DRIVER_VERSION "1.6"

#define DBG(x...) \
pr_debug(DRIVER_NAME ": " x)
Expand Down Expand Up @@ -1439,13 +1439,13 @@ static int __devinit wbsd_scan(struct wbsd_host *host)

static int __devinit wbsd_request_region(struct wbsd_host *host, int base)
{
if (io & 0x7)
if (base & 0x7)
return -EINVAL;

if (!request_region(base, 8, DRIVER_NAME))
return -EIO;

host->base = io;
host->base = base;

return 0;
}
Expand Down

0 comments on commit c7b1b83

Please sign in to comment.