Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

treewide: fix printk typo in multiple drivers

Correct spelling typo in multiple drivers.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Masanari Iida and committed by
Jiri Kosina
744627e9 8166ea07

+8 -8
+1 -1
arch/arm/kernel/kprobes-test.c
··· 1598 1598 { 1599 1599 int ret = 0; 1600 1600 1601 - pr_info("Begining kprobe tests...\n"); 1601 + pr_info("Beginning kprobe tests...\n"); 1602 1602 1603 1603 #ifndef CONFIG_THUMB2_KERNEL 1604 1604
+1 -1
arch/blackfin/mm/sram-alloc.c
··· 191 191 { 192 192 int status; 193 193 194 - printk(KERN_ERR "L2 ecc error happend\n"); 194 + printk(KERN_ERR "L2 ecc error happened\n"); 195 195 status = bfin_read32(L2CTL0_STAT); 196 196 if (status & 0x1) 197 197 printk(KERN_ERR "Core channel error type:0x%x, addr:0x%x\n",
+1 -1
drivers/isdn/hardware/mISDN/hfcpci.c
··· 490 490 (df->data[le16_to_cpu(zp->z1)])) { 491 491 if (dch->debug & DEBUG_HW) 492 492 printk(KERN_DEBUG 493 - "empty_fifo hfcpci paket inv. len " 493 + "empty_fifo hfcpci packet inv. len " 494 494 "%d or crc %d\n", 495 495 rcnt, 496 496 df->data[le16_to_cpu(zp->z1)]);
+1 -1
drivers/isdn/hisax/hfc_pci.c
··· 354 354 if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) || 355 355 (df->data[zp->z1])) { 356 356 if (cs->debug & L1_DEB_WARN) 357 - debugl1(cs, "empty_fifo hfcpci paket inv. len %d or crc %d", rcnt, df->data[zp->z1]); 357 + debugl1(cs, "empty_fifo hfcpci packet inv. len %d or crc %d", rcnt, df->data[zp->z1]); 358 358 #ifdef ERROR_STATISTIC 359 359 cs->err_rx++; 360 360 #endif
+1 -1
drivers/isdn/hisax/hfc_sx.c
··· 270 270 271 271 if ((count > fifo_size) || (count < 4)) { 272 272 if (cs->debug & L1_DEB_WARN) 273 - debugl1(cs, "hfcsx_read_fifo %d paket inv. len %d ", fifo , count); 273 + debugl1(cs, "hfcsx_read_fifo %d packet inv. len %d ", fifo , count); 274 274 while (count) { 275 275 count--; /* empty fifo */ 276 276 Read_hfc(cs, HFCSX_FIF_DRD);
+1 -1
drivers/usb/gadget/tcm_usb_gadget.c
··· 1384 1384 1385 1385 nacl = kzalloc(sizeof(struct usbg_nacl), GFP_KERNEL); 1386 1386 if (!nacl) { 1387 - printk(KERN_ERR "Unable to alocate struct usbg_nacl\n"); 1387 + printk(KERN_ERR "Unable to allocate struct usbg_nacl\n"); 1388 1388 return NULL; 1389 1389 } 1390 1390
+1 -1
drivers/vhost/tcm_vhost.c
··· 231 231 232 232 nacl = kzalloc(sizeof(struct tcm_vhost_nacl), GFP_KERNEL); 233 233 if (!nacl) { 234 - pr_err("Unable to alocate struct tcm_vhost_nacl\n"); 234 + pr_err("Unable to allocate struct tcm_vhost_nacl\n"); 235 235 return NULL; 236 236 } 237 237
+1 -1
drivers/xen/xen-pciback/pci_stub.c
··· 360 360 if (!dev_data->pci_saved_state) 361 361 dev_err(&dev->dev, "Could not store PCI conf saved state!\n"); 362 362 else { 363 - dev_dbg(&dev->dev, "reseting (FLR, D3, etc) the device\n"); 363 + dev_dbg(&dev->dev, "resetting (FLR, D3, etc) the device\n"); 364 364 __pci_reset_function_locked(dev); 365 365 pci_restore_state(dev); 366 366 }