diff options
-rw-r--r-- | Documentation/kernel-parameters.txt | 4 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | drivers/block/ll_rw_blk.c | 5 | ||||
-rw-r--r-- | drivers/i2c/chips/atxp1.c | 2 | ||||
-rw-r--r-- | include/net/ieee80211.h | 2 |
5 files changed, 7 insertions, 10 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index 67e99f144199..4ec75c06bca4 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -437,10 +437,6 @@ running once the system is up. | |||
437 | Format: {"of[f]" | "sk[ipmbr]"} | 437 | Format: {"of[f]" | "sk[ipmbr]"} |
438 | See comment in arch/i386/boot/edd.S | 438 | See comment in arch/i386/boot/edd.S |
439 | 439 | ||
440 | edd [EDD] | ||
441 | Format: {"of[f]" | "sk[ipmbr]"} | ||
442 | See comment in arch/i386/boot/edd.S | ||
443 | |||
444 | eicon= [HW,ISDN] | 440 | eicon= [HW,ISDN] |
445 | Format: <id>,<membase>,<irq> | 441 | Format: <id>,<membase>,<irq> |
446 | 442 | ||
@@ -1,7 +1,7 @@ | |||
1 | VERSION = 2 | 1 | VERSION = 2 |
2 | PATCHLEVEL = 6 | 2 | PATCHLEVEL = 6 |
3 | SUBLEVEL = 12 | 3 | SUBLEVEL = 13 |
4 | EXTRAVERSION = | 4 | EXTRAVERSION =-rc1 |
5 | NAME=Woozy Numbat | 5 | NAME=Woozy Numbat |
6 | 6 | ||
7 | # *DOCUMENTATION* | 7 | # *DOCUMENTATION* |
diff --git a/drivers/block/ll_rw_blk.c b/drivers/block/ll_rw_blk.c index 1197462bb6ba..692a5fced76e 100644 --- a/drivers/block/ll_rw_blk.c +++ b/drivers/block/ll_rw_blk.c | |||
@@ -1917,10 +1917,9 @@ get_rq: | |||
1917 | * limit of requests, otherwise we could have thousands of requests | 1917 | * limit of requests, otherwise we could have thousands of requests |
1918 | * allocated with any setting of ->nr_requests | 1918 | * allocated with any setting of ->nr_requests |
1919 | */ | 1919 | */ |
1920 | if (rl->count[rw] >= (3 * q->nr_requests / 2)) { | 1920 | if (rl->count[rw] >= (3 * q->nr_requests / 2)) |
1921 | spin_unlock_irq(q->queue_lock); | ||
1922 | goto out; | 1921 | goto out; |
1923 | } | 1922 | |
1924 | rl->count[rw]++; | 1923 | rl->count[rw]++; |
1925 | rl->starved[rw] = 0; | 1924 | rl->starved[rw] = 0; |
1926 | if (rl->count[rw] >= queue_congestion_on_threshold(q)) | 1925 | if (rl->count[rw] >= queue_congestion_on_threshold(q)) |
diff --git a/drivers/i2c/chips/atxp1.c b/drivers/i2c/chips/atxp1.c index 5c6597aa2c7f..0bcf82b4c07b 100644 --- a/drivers/i2c/chips/atxp1.c +++ b/drivers/i2c/chips/atxp1.c | |||
@@ -144,7 +144,7 @@ static ssize_t atxp1_storevcore(struct device *dev, struct device_attribute *att | |||
144 | if (vid == cvid) | 144 | if (vid == cvid) |
145 | return count; | 145 | return count; |
146 | 146 | ||
147 | dev_info(dev, "Setting VCore to %d mV (0x%02x)\n", vcore, vid); | 147 | dev_dbg(dev, "Setting VCore to %d mV (0x%02x)\n", vcore, vid); |
148 | 148 | ||
149 | /* Write every 25 mV step to increase stability */ | 149 | /* Write every 25 mV step to increase stability */ |
150 | if (cvid > vid) { | 150 | if (cvid > vid) { |
diff --git a/include/net/ieee80211.h b/include/net/ieee80211.h index 151c4f203559..db09580ad14b 100644 --- a/include/net/ieee80211.h +++ b/include/net/ieee80211.h | |||
@@ -426,7 +426,9 @@ struct ieee80211_stats { | |||
426 | 426 | ||
427 | struct ieee80211_device; | 427 | struct ieee80211_device; |
428 | 428 | ||
429 | #if 0 /* for later */ | ||
429 | #include "ieee80211_crypt.h" | 430 | #include "ieee80211_crypt.h" |
431 | #endif | ||
430 | 432 | ||
431 | #define SEC_KEY_1 (1<<0) | 433 | #define SEC_KEY_1 (1<<0) |
432 | #define SEC_KEY_2 (1<<1) | 434 | #define SEC_KEY_2 (1<<1) |