Skip to content

Commit 3fa63c7

Browse files
Jean DelvareLinus Torvalds
authored andcommitted
[PATCH] Typo fix: dot after newline in printk strings
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>
1 parent dfb7dac commit 3fa63c7

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

drivers/char/ser_a2232.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ static int __init a2232board_init(void)
790790

791791
}
792792

793-
printk("Total: %d A2232 boards initialized.\n.", nr_a2232); /* Some status report if no card was found */
793+
printk("Total: %d A2232 boards initialized.\n", nr_a2232); /* Some status report if no card was found */
794794

795795
a2232_init_portstructs();
796796

drivers/message/i2o/debug.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ static void i2o_report_fail_status(u8 req_status, u32 * msg)
9090
};
9191

9292
if (req_status == I2O_FSC_TRANSPORT_UNKNOWN_FAILURE)
93-
printk(KERN_DEBUG "TRANSPORT_UNKNOWN_FAILURE (%0#2x)\n.",
93+
printk(KERN_DEBUG "TRANSPORT_UNKNOWN_FAILURE (%0#2x).\n",
9494
req_status);
9595
else
9696
printk(KERN_DEBUG "TRANSPORT_%s.\n",

drivers/net/wireless/prism54/islpci_mgt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ islpci_mgmt_rx_fill(struct net_device *ndev)
137137
PCI_DMA_FROMDEVICE);
138138
if (!buf->pci_addr) {
139139
printk(KERN_WARNING
140-
"Failed to make memory DMA'able\n.");
140+
"Failed to make memory DMA'able.\n");
141141
return -ENOMEM;
142142
}
143143
}

drivers/pci/hotplug/ibmphp_core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ static int enable_slot(struct hotplug_slot *hs)
10771077
if (rc) {
10781078
err("Adding this card exceeds the limitations of this bus.\n");
10791079
err("(i.e., >1 133MHz cards running on same bus, or "
1080-
">2 66 PCI cards running on same bus\n.");
1080+
">2 66 PCI cards running on same bus.\n");
10811081
err("Try hot-adding into another bus\n");
10821082
rc = -EINVAL;
10831083
goto error_nopower;

drivers/usb/input/pid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ static int hid_pid_upload_effect(struct input_dev *dev,
198198
}
199199

200200
effect->id = id;
201-
dev_dbg(&pid_private->hid->dev->dev, "effect ID is %d\n.", id);
201+
dev_dbg(&pid_private->hid->dev->dev, "effect ID is %d.\n", id);
202202
pid_private->effects[id].owner = current->pid;
203203
pid_private->effects[id].flags = (1 << FF_PID_FLAGS_USED);
204204
spin_unlock_irqrestore(&pid_private->lock, flags);

net/ipv4/netfilter/ipt_addrtype.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ static int checkentry(const char *tablename, const struct ipt_ip *ip,
4848
unsigned int hook_mask)
4949
{
5050
if (matchsize != IPT_ALIGN(sizeof(struct ipt_addrtype_info))) {
51-
printk(KERN_ERR "ipt_addrtype: invalid size (%u != %Zu)\n.",
51+
printk(KERN_ERR "ipt_addrtype: invalid size (%u != %Zu)\n",
5252
matchsize, IPT_ALIGN(sizeof(struct ipt_addrtype_info)));
5353
return 0;
5454
}

sound/oss/awe_wave.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6062,7 +6062,7 @@ static int awe_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id
60626062
io1 = pnp_port_start(dev,0);
60636063
io2 = pnp_port_start(dev,1);
60646064
io3 = pnp_port_start(dev,2);
6065-
printk(KERN_INFO "AWE32: A PnP Wave Table was detected at IO's %#x,%#x,%#x\n.",
6065+
printk(KERN_INFO "AWE32: A PnP Wave Table was detected at IO's %#x,%#x,%#x.\n",
60666066
io1, io2, io3);
60676067
setup_ports(io1, io2, io3);
60686068

0 commit comments

Comments
 (0)