From c7b1b83497efcdce3cfd9dc3e499c8a55e1a0c4e Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Sun, 6 Aug 2006 22:22:23 +0200 Subject: [PATCH] --- yaml --- r: 33324 b: refs/heads/master c: 916f3ac680fcc4c142e9acd46161f55533b11760 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/drivers/mmc/wbsd.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index ae020e1e91a8..a68e69b8631c 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c723e08af18e60cda3bbc90e0d6fb688587aeb9f +refs/heads/master: 916f3ac680fcc4c142e9acd46161f55533b11760 diff --git a/trunk/drivers/mmc/wbsd.c b/trunk/drivers/mmc/wbsd.c index 8a30ef3ae419..ce86887ed3bd 100644 --- a/trunk/drivers/mmc/wbsd.c +++ b/trunk/drivers/mmc/wbsd.c @@ -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) @@ -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; }