aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/olpc.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/x86/kernel/olpc.c b/arch/x86/kernel/olpc.c
index 156605281f56..f5ff3903b38b 100644
--- a/arch/x86/kernel/olpc.c
+++ b/arch/x86/kernel/olpc.c
@@ -142,7 +142,7 @@ restart:
142 * The OBF flag will sometimes misbehave due to what we believe 142 * The OBF flag will sometimes misbehave due to what we believe
143 * is a hardware quirk.. 143 * is a hardware quirk..
144 */ 144 */
145 printk(KERN_DEBUG "olpc-ec: running cmd 0x%x\n", cmd); 145 pr_devel("olpc-ec: running cmd 0x%x\n", cmd);
146 outb(cmd, 0x6c); 146 outb(cmd, 0x6c);
147 147
148 if (wait_on_ibf(0x6c, 0)) { 148 if (wait_on_ibf(0x6c, 0)) {
@@ -159,8 +159,7 @@ restart:
159 " EC accept data!\n"); 159 " EC accept data!\n");
160 goto err; 160 goto err;
161 } 161 }
162 printk(KERN_DEBUG "olpc-ec: sending cmd arg 0x%x\n", 162 pr_devel("olpc-ec: sending cmd arg 0x%x\n", inbuf[i]);
163 inbuf[i]);
164 outb(inbuf[i], 0x68); 163 outb(inbuf[i], 0x68);
165 } 164 }
166 } 165 }
@@ -173,8 +172,7 @@ restart:
173 goto restart; 172 goto restart;
174 } 173 }
175 outbuf[i] = inb(0x68); 174 outbuf[i] = inb(0x68);
176 printk(KERN_DEBUG "olpc-ec: received 0x%x\n", 175 pr_devel("olpc-ec: received 0x%x\n", outbuf[i]);
177 outbuf[i]);
178 } 176 }
179 } 177 }
180 178