]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] Typo fix: dot after newline in printk strings
authorJean Delvare <khali@linux-fr.org>
Sun, 30 Oct 2005 23:02:23 +0000 (15:02 -0800)
committerLinus Torvalds <torvalds@g5.osdl.org>
Mon, 31 Oct 2005 01:37:20 +0000 (17:37 -0800)
Typo fix: dots appearing after a newline in printk strings.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/char/ser_a2232.c
drivers/message/i2o/debug.c
drivers/net/wireless/prism54/islpci_mgt.c
drivers/pci/hotplug/ibmphp_core.c
drivers/usb/input/pid.c
net/ipv4/netfilter/ipt_addrtype.c
sound/oss/awe_wave.c

index 6b4e9d155f5053bdd154f8b5434810d69d0da2d1..dda30e42ec79806b8e2de0d79e365c407befb4eb 100644 (file)
@@ -790,7 +790,7 @@ static int __init a2232board_init(void)
 
        }       
 
-       printk("Total: %d A2232 boards initialized.\n.", nr_a2232); /* Some status report if no card was found */
+       printk("Total: %d A2232 boards initialized.\n", nr_a2232); /* Some status report if no card was found */
 
        a2232_init_portstructs();
 
index 018ca887ca8561e9f5f81b5e113587206fb3eb5b..40d4ea898dbc58eba732fa4a4cc7bbc8c54df61a 100644 (file)
@@ -90,7 +90,7 @@ static void i2o_report_fail_status(u8 req_status, u32 * msg)
        };
 
        if (req_status == I2O_FSC_TRANSPORT_UNKNOWN_FAILURE)
-               printk(KERN_DEBUG "TRANSPORT_UNKNOWN_FAILURE (%0#2x)\n.",
+               printk(KERN_DEBUG "TRANSPORT_UNKNOWN_FAILURE (%0#2x).\n",
                       req_status);
        else
                printk(KERN_DEBUG "TRANSPORT_%s.\n",
index 4937a5ad4b2cee319d63eabf5ee423b2e8aa955c..6a60c5970cb519b237f4c9b7b95f09a4d2adb649 100644 (file)
@@ -137,7 +137,7 @@ islpci_mgmt_rx_fill(struct net_device *ndev)
                                                       PCI_DMA_FROMDEVICE);
                        if (!buf->pci_addr) {
                                printk(KERN_WARNING
-                                      "Failed to make memory DMA'able\n.");
+                                      "Failed to make memory DMA'able.\n");
                                return -ENOMEM;
                        }
                }
index 0392e004258f66a77c256cab41681cea3878b43e..aabf1e70b5280f70210c7f9efe840d3964ab1a31 100644 (file)
@@ -1077,7 +1077,7 @@ static int enable_slot(struct hotplug_slot *hs)
        if (rc) {
                err("Adding this card exceeds the limitations of this bus.\n");
                err("(i.e., >1 133MHz cards running on same bus, or "
-                    ">2 66 PCI cards running on same bus\n.");
+                    ">2 66 PCI cards running on same bus.\n");
                err("Try hot-adding into another bus\n");
                rc = -EINVAL;
                goto error_nopower;
index a00672c96644a06452cf513f3026697998be7dc2..dca5ee93a4efc8e1d2e386354deac8ad129fb33a 100644 (file)
@@ -198,7 +198,7 @@ static int hid_pid_upload_effect(struct input_dev *dev,
                }
 
                effect->id = id;
-               dev_dbg(&pid_private->hid->dev->dev, "effect ID is %d\n.", id);
+               dev_dbg(&pid_private->hid->dev->dev, "effect ID is %d.\n", id);
                pid_private->effects[id].owner = current->pid;
                pid_private->effects[id].flags = (1 << FF_PID_FLAGS_USED);
                spin_unlock_irqrestore(&pid_private->lock, flags);
index f5909a4c3fc7852f2a34b040d870fa512cb8bbab..e19c2a52d00cb537e5783aeaa3e0fdd25005b744 100644 (file)
@@ -48,7 +48,7 @@ static int checkentry(const char *tablename, const struct ipt_ip *ip,
                      unsigned int hook_mask)
 {
        if (matchsize != IPT_ALIGN(sizeof(struct ipt_addrtype_info))) {
-               printk(KERN_ERR "ipt_addrtype: invalid size (%u != %Zu)\n.",
+               printk(KERN_ERR "ipt_addrtype: invalid size (%u != %Zu)\n",
                       matchsize, IPT_ALIGN(sizeof(struct ipt_addrtype_info)));
                return 0;
        }
index d2b9beda8ace8910ae1d2ae985913ec26e72dd1c..b3ea719d33db0b737a6fb64c5d7d311b14014f99 100644 (file)
@@ -6062,7 +6062,7 @@ static int awe_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id
        io1 = pnp_port_start(dev,0);
        io2 = pnp_port_start(dev,1);
        io3 = pnp_port_start(dev,2);
-       printk(KERN_INFO "AWE32: A PnP Wave Table was detected at IO's %#x,%#x,%#x\n.",
+       printk(KERN_INFO "AWE32: A PnP Wave Table was detected at IO's %#x,%#x,%#x.\n",
               io1, io2, io3);
        setup_ports(io1, io2, io3);