diff options
author | Greg Ungerer <gerg@linux-m68k.org> | 2016-09-09 03:01:06 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@linux-m68k.org> | 2016-09-25 22:02:59 -0400 |
commit | 3ec53d6fceedbe0a5af0bb7dcb42e82dabd795d3 (patch) | |
tree | 8e4f57f6272ab07d8a8809acf8a532f246bdc59c /arch/m68k | |
parent | 150cefbbee2996d9c9c8557d137cef5d974f009f (diff) |
m68knommu: convert printk(KERN_INFO) to pr_info()
The old style use of printk(KERN_INFO) is depracated. Convert use of it
in setup_no.c to the modern pr_info().
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/kernel/setup_no.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/arch/m68k/kernel/setup_no.c b/arch/m68k/kernel/setup_no.c index 0329e7dc7d8a..8afe6f651c1c 100644 --- a/arch/m68k/kernel/setup_no.c +++ b/arch/m68k/kernel/setup_no.c | |||
@@ -104,36 +104,36 @@ void __init setup_arch(char **cmdline_p) | |||
104 | 104 | ||
105 | process_uboot_commandline(&command_line[0], sizeof(command_line)); | 105 | process_uboot_commandline(&command_line[0], sizeof(command_line)); |
106 | 106 | ||
107 | printk(KERN_INFO "uClinux with CPU " CPU_NAME "\n"); | 107 | pr_info("uClinux with CPU " CPU_NAME "\n"); |
108 | 108 | ||
109 | #ifdef CONFIG_UCDIMM | 109 | #ifdef CONFIG_UCDIMM |
110 | printk(KERN_INFO "uCdimm by Lineo, Inc. <www.lineo.com>\n"); | 110 | pr_info("uCdimm by Lineo, Inc. <www.lineo.com>\n"); |
111 | #endif | 111 | #endif |
112 | #ifdef CONFIG_M68VZ328 | 112 | #ifdef CONFIG_M68VZ328 |
113 | printk(KERN_INFO "M68VZ328 support by Evan Stawnyczy <e@lineo.ca>\n"); | 113 | pr_info("M68VZ328 support by Evan Stawnyczy <e@lineo.ca>\n"); |
114 | #endif | 114 | #endif |
115 | #ifdef CONFIG_COLDFIRE | 115 | #ifdef CONFIG_COLDFIRE |
116 | printk(KERN_INFO "COLDFIRE port done by Greg Ungerer, gerg@snapgear.com\n"); | 116 | pr_info("COLDFIRE port done by Greg Ungerer, gerg@snapgear.com\n"); |
117 | #ifdef CONFIG_M5307 | 117 | #ifdef CONFIG_M5307 |
118 | printk(KERN_INFO "Modified for M5307 by Dave Miller, dmiller@intellistor.com\n"); | 118 | pr_info("Modified for M5307 by Dave Miller, dmiller@intellistor.com\n"); |
119 | #endif | 119 | #endif |
120 | #ifdef CONFIG_ELITE | 120 | #ifdef CONFIG_ELITE |
121 | printk(KERN_INFO "Modified for M5206eLITE by Rob Scott, rscott@mtrob.fdns.net\n"); | 121 | pr_info("Modified for M5206eLITE by Rob Scott, rscott@mtrob.fdns.net\n"); |
122 | #endif | 122 | #endif |
123 | #endif | 123 | #endif |
124 | printk(KERN_INFO "Flat model support (C) 1998,1999 Kenneth Albanowski, D. Jeff Dionne\n"); | 124 | pr_info("Flat model support (C) 1998,1999 Kenneth Albanowski, D. Jeff Dionne\n"); |
125 | 125 | ||
126 | #if defined( CONFIG_PILOT ) && defined( CONFIG_M68328 ) | 126 | #if defined( CONFIG_PILOT ) && defined( CONFIG_M68328 ) |
127 | printk(KERN_INFO "TRG SuperPilot FLASH card support <info@trgnet.com>\n"); | 127 | pr_info("TRG SuperPilot FLASH card support <info@trgnet.com>\n"); |
128 | #endif | 128 | #endif |
129 | #if defined( CONFIG_PILOT ) && defined( CONFIG_M68EZ328 ) | 129 | #if defined( CONFIG_PILOT ) && defined( CONFIG_M68EZ328 ) |
130 | printk(KERN_INFO "PalmV support by Lineo Inc. <jeff@uclinux.com>\n"); | 130 | pr_info("PalmV support by Lineo Inc. <jeff@uclinux.com>\n"); |
131 | #endif | 131 | #endif |
132 | #ifdef CONFIG_DRAGEN2 | 132 | #ifdef CONFIG_DRAGEN2 |
133 | printk(KERN_INFO "DragonEngine II board support by Georges Menie\n"); | 133 | pr_info("DragonEngine II board support by Georges Menie\n"); |
134 | #endif | 134 | #endif |
135 | #ifdef CONFIG_M5235EVB | 135 | #ifdef CONFIG_M5235EVB |
136 | printk(KERN_INFO "Motorola M5235EVB support (C)2005 Syn-tech Systems, Inc. (Jate Sujjavanich)\n"); | 136 | pr_info("Motorola M5235EVB support (C)2005 Syn-tech Systems, Inc. (Jate Sujjavanich)\n"); |
137 | #endif | 137 | #endif |
138 | 138 | ||
139 | pr_debug("KERNEL -> TEXT=0x%p-0x%p DATA=0x%p-0x%p BSS=0x%p-0x%p\n", | 139 | pr_debug("KERNEL -> TEXT=0x%p-0x%p DATA=0x%p-0x%p BSS=0x%p-0x%p\n", |