diff options
| author | H. Peter Anvin <hpa@linux.intel.com> | 2012-01-19 15:56:50 -0500 |
|---|---|---|
| committer | H. Peter Anvin <hpa@linux.intel.com> | 2012-01-19 15:56:50 -0500 |
| commit | 282f445a779ed76fca9884fe377bf56a3088b208 (patch) | |
| tree | d9abcf526baee0100672851e0a8894c19e762a39 /kernel/printk.c | |
| parent | 68f30fbee19cc67849b9fa8e153ede70758afe81 (diff) | |
| parent | 90a4c0f51e8e44111a926be6f4c87af3938a79c3 (diff) | |
Merge remote-tracking branch 'linus/master' into x86/urgent
Diffstat (limited to 'kernel/printk.c')
| -rw-r--r-- | kernel/printk.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kernel/printk.c b/kernel/printk.c index 989e4a52da76..13c0a1143f49 100644 --- a/kernel/printk.c +++ b/kernel/printk.c | |||
| @@ -521,7 +521,7 @@ static void __call_console_drivers(unsigned start, unsigned end) | |||
| 521 | } | 521 | } |
| 522 | } | 522 | } |
| 523 | 523 | ||
| 524 | static int __read_mostly ignore_loglevel; | 524 | static bool __read_mostly ignore_loglevel; |
| 525 | 525 | ||
| 526 | static int __init ignore_loglevel_setup(char *str) | 526 | static int __init ignore_loglevel_setup(char *str) |
| 527 | { | 527 | { |
| @@ -532,7 +532,7 @@ static int __init ignore_loglevel_setup(char *str) | |||
| 532 | } | 532 | } |
| 533 | 533 | ||
| 534 | early_param("ignore_loglevel", ignore_loglevel_setup); | 534 | early_param("ignore_loglevel", ignore_loglevel_setup); |
| 535 | module_param_named(ignore_loglevel, ignore_loglevel, bool, S_IRUGO | S_IWUSR); | 535 | module_param(ignore_loglevel, bool, S_IRUGO | S_IWUSR); |
| 536 | MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to" | 536 | MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to" |
| 537 | "print all kernel messages to the console."); | 537 | "print all kernel messages to the console."); |
| 538 | 538 | ||
| @@ -696,9 +696,9 @@ static void zap_locks(void) | |||
| 696 | } | 696 | } |
| 697 | 697 | ||
| 698 | #if defined(CONFIG_PRINTK_TIME) | 698 | #if defined(CONFIG_PRINTK_TIME) |
| 699 | static int printk_time = 1; | 699 | static bool printk_time = 1; |
| 700 | #else | 700 | #else |
| 701 | static int printk_time = 0; | 701 | static bool printk_time = 0; |
| 702 | #endif | 702 | #endif |
| 703 | module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR); | 703 | module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR); |
| 704 | 704 | ||
| @@ -1098,7 +1098,7 @@ int update_console_cmdline(char *name, int idx, char *name_new, int idx_new, cha | |||
| 1098 | return -1; | 1098 | return -1; |
| 1099 | } | 1099 | } |
| 1100 | 1100 | ||
| 1101 | int console_suspend_enabled = 1; | 1101 | bool console_suspend_enabled = 1; |
| 1102 | EXPORT_SYMBOL(console_suspend_enabled); | 1102 | EXPORT_SYMBOL(console_suspend_enabled); |
| 1103 | 1103 | ||
| 1104 | static int __init console_suspend_disable(char *str) | 1104 | static int __init console_suspend_disable(char *str) |
