patch-1.3.99 linux/drivers/char/lp_m68k.c
Next file: linux/drivers/char/pcxx.c
Previous file: linux/drivers/char/lp.c
Back to the patch index
Back to the overall index
- Lines: 69
- Date:
Mon May 6 12:49:43 1996
- Orig file:
v1.3.98/linux/drivers/char/lp_m68k.c
- Orig date:
Sat Apr 27 15:19:51 1996
diff -u --recursive --new-file v1.3.98/linux/drivers/char/lp_m68k.c linux/drivers/char/lp_m68k.c
@@ -236,13 +236,13 @@
been printed at all. */
if (lp_table[dev].lp_has_pout(dev)) {
- printk("lp%d: paper-out\n",dev);
+ printk(KERN_NOTICE "lp%d: paper-out\n",dev);
if (!rc) rc = -ENOSPC;
} else if (!lp_table[dev].lp_is_online(dev)) {
- printk("lp%d: off-line\n",dev);
+ printk(KERN_NOTICE "lp%d: off-line\n",dev);
if (!rc) rc = -EIO;
} else if (lp_table[dev].lp_is_busy(dev)) {
- printk("lp%d: on fire\n",dev);
+ printk(KERN_NOTICE "lp%d: on fire\n",dev);
if (!rc) rc = -EIO;
}
if (lp_table[dev].flags & LP_ABORT)
@@ -294,14 +294,14 @@
#endif
} else { /* if printer timed out */
if (lp_table[dev].lp_has_pout(dev)) {
- printk("lp%d: out of paper\n",dev);
+ printk(KERN_NOTICE "lp%d: out of paper\n",dev);
if (lp_table[dev].flags & LP_ABORT)
return temp - buf ? temp-buf : -ENOSPC;
current->state = TASK_INTERRUPTIBLE;
current->timeout = jiffies + LP_TIMEOUT_POLLED;
schedule();
} else if (!lp_table[dev].lp_is_online(dev)) {
- printk("lp%d: off-line\n",dev);
+ printk(KERN_NOTICE "lp%d: off-line\n",dev);
if (lp_table[dev].flags & LP_ABORT)
return temp - buf ? temp-buf : -EIO;
current->state = TASK_INTERRUPTIBLE;
@@ -310,7 +310,7 @@
} else
/* not offline or out of paper. on fire? */
if (lp_table[dev].lp_is_busy(dev)) {
- printk("lp%d: on fire\n",dev);
+ printk(KERN_NOTICE "lp%d: on fire\n",dev);
if (lp_table[dev].flags & LP_ABORT)
return temp - buf ? temp-buf : -EFAULT;
current->state = TASK_INTERRUPTIBLE;
@@ -447,7 +447,7 @@
#if WHICH_DRIVER == FORCE_POLLING
lp_irq = 0;
- printk("lp_init: lp using polling driver\n");
+ printk(KERN_INFO "lp_init: lp using polling driver\n");
#else
#ifdef CONFIG_AMIGA
@@ -462,13 +462,13 @@
#endif
if (lp_irq)
- printk("lp_init: lp using interrupt\n");
+ printk(KERN_INFO "lp_init: lp using interrupt\n");
else
#if WHICH_DRIVER == PREFER_INTERRUPT
- printk("lp_init: lp using polling driver\n");
+ printk(KERN_INFO "lp_init: lp using polling driver\n");
#else
- printk("lp_init: cant get interrupt, and polling driver not configured\n");
+ printk(KERN_WARNING "lp_init: can't get interrupt, and polling driver not configured\n");
#endif
#endif
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this