Commit 7b5bbf5d authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] m68knommu: 68360 commproc.c printk cleanup

From: <gerg@snapgear.com>

Add type specifier to printk calls.  Original patch from kernel janitors.
parent 49e7053a
...@@ -213,7 +213,7 @@ cpm_install_handler(int vec, void (*handler)(), void *dev_id) ...@@ -213,7 +213,7 @@ cpm_install_handler(int vec, void (*handler)(), void *dev_id)
request_irq(vec, handler, IRQ_FLG_LOCK, "timer", dev_id); request_irq(vec, handler, IRQ_FLG_LOCK, "timer", dev_id);
/* if (cpm_vecs[vec].handler != 0) */ /* if (cpm_vecs[vec].handler != 0) */
/* printk("CPM interrupt %x replacing %x\n", */ /* printk(KERN_INFO "CPM interrupt %x replacing %x\n", */
/* (uint)handler, (uint)cpm_vecs[vec].handler); */ /* (uint)handler, (uint)cpm_vecs[vec].handler); */
/* cpm_vecs[vec].handler = handler; */ /* cpm_vecs[vec].handler = handler; */
/* cpm_vecs[vec].dev_id = dev_id; */ /* cpm_vecs[vec].dev_id = dev_id; */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment