Commit 744627e9 authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina

treewide: fix printk typo in multiple drivers

Correct spelling typo in multiple drivers.
Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 8166ea07
...@@ -1598,7 +1598,7 @@ static int __init run_all_tests(void) ...@@ -1598,7 +1598,7 @@ static int __init run_all_tests(void)
{ {
int ret = 0; int ret = 0;
pr_info("Begining kprobe tests...\n"); pr_info("Beginning kprobe tests...\n");
#ifndef CONFIG_THUMB2_KERNEL #ifndef CONFIG_THUMB2_KERNEL
......
...@@ -191,7 +191,7 @@ static irqreturn_t l2_ecc_err(int irq, void *dev_id) ...@@ -191,7 +191,7 @@ static irqreturn_t l2_ecc_err(int irq, void *dev_id)
{ {
int status; int status;
printk(KERN_ERR "L2 ecc error happend\n"); printk(KERN_ERR "L2 ecc error happened\n");
status = bfin_read32(L2CTL0_STAT); status = bfin_read32(L2CTL0_STAT);
if (status & 0x1) if (status & 0x1)
printk(KERN_ERR "Core channel error type:0x%x, addr:0x%x\n", printk(KERN_ERR "Core channel error type:0x%x, addr:0x%x\n",
......
...@@ -490,7 +490,7 @@ receive_dmsg(struct hfc_pci *hc) ...@@ -490,7 +490,7 @@ receive_dmsg(struct hfc_pci *hc)
(df->data[le16_to_cpu(zp->z1)])) { (df->data[le16_to_cpu(zp->z1)])) {
if (dch->debug & DEBUG_HW) if (dch->debug & DEBUG_HW)
printk(KERN_DEBUG printk(KERN_DEBUG
"empty_fifo hfcpci paket inv. len " "empty_fifo hfcpci packet inv. len "
"%d or crc %d\n", "%d or crc %d\n",
rcnt, rcnt,
df->data[le16_to_cpu(zp->z1)]); df->data[le16_to_cpu(zp->z1)]);
......
...@@ -354,7 +354,7 @@ receive_dmsg(struct IsdnCardState *cs) ...@@ -354,7 +354,7 @@ receive_dmsg(struct IsdnCardState *cs)
if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) || if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) ||
(df->data[zp->z1])) { (df->data[zp->z1])) {
if (cs->debug & L1_DEB_WARN) if (cs->debug & L1_DEB_WARN)
debugl1(cs, "empty_fifo hfcpci paket inv. len %d or crc %d", rcnt, df->data[zp->z1]); debugl1(cs, "empty_fifo hfcpci packet inv. len %d or crc %d", rcnt, df->data[zp->z1]);
#ifdef ERROR_STATISTIC #ifdef ERROR_STATISTIC
cs->err_rx++; cs->err_rx++;
#endif #endif
......
...@@ -270,7 +270,7 @@ read_fifo(struct IsdnCardState *cs, u_char fifo, int trans_max) ...@@ -270,7 +270,7 @@ read_fifo(struct IsdnCardState *cs, u_char fifo, int trans_max)
if ((count > fifo_size) || (count < 4)) { if ((count > fifo_size) || (count < 4)) {
if (cs->debug & L1_DEB_WARN) if (cs->debug & L1_DEB_WARN)
debugl1(cs, "hfcsx_read_fifo %d paket inv. len %d ", fifo , count); debugl1(cs, "hfcsx_read_fifo %d packet inv. len %d ", fifo , count);
while (count) { while (count) {
count--; /* empty fifo */ count--; /* empty fifo */
Read_hfc(cs, HFCSX_FIF_DRD); Read_hfc(cs, HFCSX_FIF_DRD);
......
...@@ -1384,7 +1384,7 @@ static struct se_node_acl *usbg_alloc_fabric_acl(struct se_portal_group *se_tpg) ...@@ -1384,7 +1384,7 @@ static struct se_node_acl *usbg_alloc_fabric_acl(struct se_portal_group *se_tpg)
nacl = kzalloc(sizeof(struct usbg_nacl), GFP_KERNEL); nacl = kzalloc(sizeof(struct usbg_nacl), GFP_KERNEL);
if (!nacl) { if (!nacl) {
printk(KERN_ERR "Unable to alocate struct usbg_nacl\n"); printk(KERN_ERR "Unable to allocate struct usbg_nacl\n");
return NULL; return NULL;
} }
......
...@@ -231,7 +231,7 @@ static struct se_node_acl *tcm_vhost_alloc_fabric_acl( ...@@ -231,7 +231,7 @@ static struct se_node_acl *tcm_vhost_alloc_fabric_acl(
nacl = kzalloc(sizeof(struct tcm_vhost_nacl), GFP_KERNEL); nacl = kzalloc(sizeof(struct tcm_vhost_nacl), GFP_KERNEL);
if (!nacl) { if (!nacl) {
pr_err("Unable to alocate struct tcm_vhost_nacl\n"); pr_err("Unable to allocate struct tcm_vhost_nacl\n");
return NULL; return NULL;
} }
......
...@@ -360,7 +360,7 @@ static int __devinit pcistub_init_device(struct pci_dev *dev) ...@@ -360,7 +360,7 @@ static int __devinit pcistub_init_device(struct pci_dev *dev)
if (!dev_data->pci_saved_state) if (!dev_data->pci_saved_state)
dev_err(&dev->dev, "Could not store PCI conf saved state!\n"); dev_err(&dev->dev, "Could not store PCI conf saved state!\n");
else { else {
dev_dbg(&dev->dev, "reseting (FLR, D3, etc) the device\n"); dev_dbg(&dev->dev, "resetting (FLR, D3, etc) the device\n");
__pci_reset_function_locked(dev); __pci_reset_function_locked(dev);
pci_restore_state(dev); pci_restore_state(dev);
} }
......
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