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

fix typos concerning "initiali[zs]e"

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

authored by

Uwe Kleine-König and committed by
Jiri Kosina
421f91d2 65155b37

+90 -90
+2 -2
arch/arm/mach-msm/acpuclock-arm11.c
··· 98 98 99 99 /* 100 100 * ACPU speed table. Complete table is shown but certain speeds are commented 101 - * out to optimized speed switching. Initalize loops_per_jiffy to 0. 101 + * out to optimized speed switching. Initialize loops_per_jiffy to 0. 102 102 * 103 103 * Table stepping up/down is optimized for 256mhz jumps while staying on the 104 104 * same PLL. ··· 494 494 * Clock driver initialization 495 495 *---------------------------------------------------------------------------*/ 496 496 497 - /* Initalize the lpj field in the acpu_freq_tbl. */ 497 + /* Initialize the lpj field in the acpu_freq_tbl. */ 498 498 static void __init lpj_init(void) 499 499 { 500 500 int i;
+1 -1
arch/arm/mach-u300/gpio.c
··· 523 523 524 524 /* 525 525 * Put all pins that are set to either 'GPIO_OUT' or 'GPIO_NOT_USED' 526 - * to output and 'GPIO_IN' to input for each port. And initalize 526 + * to output and 'GPIO_IN' to input for each port. And initialize 527 527 * default value on outputs. 528 528 */ 529 529 for (i = 0; i < U300_GPIO_NUM_PORTS; i++) {
+1 -1
arch/arm/plat-s3c24xx/clock.c
··· 43 43 #include <plat/cpu.h> 44 44 #include <plat/pll.h> 45 45 46 - /* initalise all the clocks */ 46 + /* initialise all the clocks */ 47 47 48 48 void __init_or_cpufreq s3c24xx_setup_clocks(unsigned long fclk, 49 49 unsigned long hclk,
+1 -1
arch/arm/plat-samsung/clock.c
··· 391 391 (clkp->enable)(clkp, 0); 392 392 } 393 393 394 - /* initalise all the clocks */ 394 + /* initialise all the clocks */ 395 395 396 396 int __init s3c24xx_register_baseclocks(unsigned long xtal) 397 397 {
+1 -1
arch/h8300/kernel/timer/itu.c
··· 73 73 74 74 setup_irq(ITUIRQ, &itu_irq); 75 75 76 - /* initalize timer */ 76 + /* initialize timer */ 77 77 ctrl_outb(0, TSTR); 78 78 ctrl_outb(CCLR0 | div, ITUBASE + TCR); 79 79 ctrl_outb(0x01, ITUBASE + TIER);
+1 -1
arch/h8300/kernel/timer/timer16.c
··· 68 68 69 69 setup_irq(_16IRQ, &timer16_irq); 70 70 71 - /* initalize timer */ 71 + /* initialize timer */ 72 72 ctrl_outb(0, TSTR); 73 73 ctrl_outb(CCLR0 | div, _16BASE + TCR); 74 74 ctrl_outw(cnt, _16BASE + GRA);
+1 -1
arch/h8300/kernel/timer/timer8.c
··· 94 94 ctrl_bclr(0, MSTPCRL) 95 95 #endif 96 96 97 - /* initalize timer */ 97 + /* initialize timer */ 98 98 ctrl_outw(cnt, _8BASE + TCORA); 99 99 ctrl_outw(0x0000, _8BASE + _8TCSR); 100 100 ctrl_outw((CMIEA|CCLR_CMA|CKS2) << 8 | div,
+3 -3
arch/ia64/kvm/kvm-ia64.c
··· 1234 1234 p_ctx->cr[2] = (unsigned long)kvm_vmm_info->vmm_ivt; 1235 1235 p_ctx->cr[8] = 0x3c; 1236 1236 1237 - /*Initilize region register*/ 1237 + /*Initialize region register*/ 1238 1238 p_ctx->rr[0] = 0x30; 1239 1239 p_ctx->rr[1] = 0x30; 1240 1240 p_ctx->rr[2] = 0x30; ··· 1243 1243 p_ctx->rr[5] = 0x30; 1244 1244 p_ctx->rr[7] = 0x30; 1245 1245 1246 - /*Initilize branch register 0*/ 1246 + /*Initialize branch register 0*/ 1247 1247 p_ctx->br[0] = *(unsigned long *)kvm_vmm_info->vmm_entry; 1248 1248 1249 1249 vcpu->arch.vmm_rr = kvm->arch.vmm_init_rr; ··· 1702 1702 BUG_ON(!module); 1703 1703 1704 1704 if (!kvm_vmm_base) { 1705 - printk("kvm: kvm area hasn't been initilized yet!!\n"); 1705 + printk("kvm: kvm area hasn't been initialized yet!!\n"); 1706 1706 return -EFAULT; 1707 1707 } 1708 1708
+1 -1
arch/ia64/sn/kernel/setup.c
··· 507 507 cnodeid_t cnode; 508 508 509 509 /* 510 - * Allocate & initalize the nodepda for each node. 510 + * Allocate & initialize the nodepda for each node. 511 511 */ 512 512 for_each_online_node(cnode) { 513 513 nodepdaindr[cnode] =
+2 -2
arch/sparc/boot/btfixupprep.c
··· 216 216 switch (buffer[nbase+3]) { 217 217 case 'f': 218 218 if (initval) { 219 - fprintf(stderr, "Cannot use pre-initalized fixups for calls\n%s\n", buffer); 219 + fprintf(stderr, "Cannot use pre-initialized fixups for calls\n%s\n", buffer); 220 220 exit(1); 221 221 } 222 222 if (!strcmp (sect, "__ksymtab")) { ··· 273 273 break; 274 274 case 'i': 275 275 if (initval) { 276 - fprintf(stderr, "Cannot use pre-initalized fixups for INT\n%s\n", buffer); 276 + fprintf(stderr, "Cannot use pre-initialized fixups for INT\n%s\n", buffer); 277 277 exit(1); 278 278 } 279 279 if (strncmp (buffer + mode+9, "HI22 ", 10) && strncmp (buffer + mode+9, "LO10 ", 10)) {
+1 -1
arch/x86/kernel/apic/apic.c
··· 459 459 } 460 460 461 461 /* 462 - * Setup the local APIC timer for this CPU. Copy the initilized values 462 + * Setup the local APIC timer for this CPU. Copy the initialized values 463 463 * of the boot CPU and register the clock event in the framework. 464 464 */ 465 465 static void __cpuinit setup_APIC_timer(void)
+1 -1
arch/x86/kernel/head32.c
··· 20 20 21 21 static void __init i386_default_early_setup(void) 22 22 { 23 - /* Initilize 32bit specific setup functions */ 23 + /* Initialize 32bit specific setup functions */ 24 24 x86_init.resources.probe_roms = probe_roms; 25 25 x86_init.resources.reserve_resources = i386_reserve_resources; 26 26 x86_init.mpparse.setup_ioapic_ids = setup_ioapic_ids_from_mpc;
+1 -1
drivers/crypto/amcc/crypto4xx_reg_def.h
··· 113 113 #define CRYPTO4XX_PRNG_LFSR_H 0x00070034 114 114 115 115 /** 116 - * Initilize CRYPTO ENGINE registers, and memory bases. 116 + * Initialize CRYPTO ENGINE registers, and memory bases. 117 117 */ 118 118 #define PPC4XX_PDR_POLL 0x3ff 119 119 #define PPC4XX_OUTPUT_THRESHOLD 2
+1 -1
drivers/dma/at_hdmac.c
··· 69 69 } 70 70 71 71 /** 72 - * atc_alloc_descriptor - allocate and return an initilized descriptor 72 + * atc_alloc_descriptor - allocate and return an initialized descriptor 73 73 * @chan: the channel to allocate descriptors for 74 74 * @gfp_flags: GFP allocation flags 75 75 *
+1 -1
drivers/gpu/drm/savage/savage_bci.c
··· 552 552 553 553 554 554 /* 555 - * Initalize mappings. On Savage4 and SavageIX the alignment 555 + * Initialize mappings. On Savage4 and SavageIX the alignment 556 556 * and size of the aperture is not suitable for automatic MTRR setup 557 557 * in drm_addmap. Therefore we add them manually before the maps are 558 558 * initialized, and tear them down on last close.
+1 -1
drivers/ide/ide-gd.c
··· 92 92 93 93 /* 94 94 * On HPA drives the capacity needs to be 95 - * reinitilized on resume otherwise the disk 95 + * reinitialized on resume otherwise the disk 96 96 * can not be used and a hard reset is required 97 97 */ 98 98 static void ide_gd_resume(ide_drive_t *drive)
+1 -1
drivers/infiniband/hw/ehca/hcp_if.h
··· 49 49 #include "hipz_hw.h" 50 50 51 51 /* 52 - * hipz_h_alloc_resource_eq allocates EQ resources in HW and FW, initalize 52 + * hipz_h_alloc_resource_eq allocates EQ resources in HW and FW, initialize 53 53 * resources, create the empty EQPT (ring). 54 54 */ 55 55 u64 hipz_h_alloc_resource_eq(const struct ipz_adapter_handle adapter_handle,
+1 -1
drivers/input/misc/ad714x.c
··· 1118 1118 if (error) 1119 1119 goto err_free_mem; 1120 1120 1121 - /* initilize and request sw/hw resources */ 1121 + /* initialize and request sw/hw resources */ 1122 1122 1123 1123 ad714x_hw_init(ad714x); 1124 1124 mutex_init(&ad714x->mutex);
+1 -1
drivers/media/video/ov511.c
··· 4808 4808 return -1; 4809 4809 4810 4810 if (init_ov_sensor(ov) >= 0) { 4811 - PDEBUG(1, "OV7xx0 sensor initalized (method 1)"); 4811 + PDEBUG(1, "OV7xx0 sensor initialized (method 1)"); 4812 4812 } else { 4813 4813 /* Reset the 76xx */ 4814 4814 if (i2c_w(ov, 0x12, 0x80) < 0)
+1 -1
drivers/media/video/zoran/zoran.h
··· 391 391 392 392 struct mutex resource_lock; /* prevent evil stuff */ 393 393 394 - u8 initialized; /* flag if zoran has been correctly initalized */ 394 + u8 initialized; /* flag if zoran has been correctly initialized */ 395 395 int user; /* number of current users */ 396 396 struct card_info card; 397 397 struct tvnorm *timing;
+1 -1
drivers/media/video/zoran/zr36050.c
··· 236 236 237 237 Could be variable, but until it's not needed it they are just fixed to save 238 238 memory. Otherwise expand zr36050 structure with arrays, push the values to 239 - it and initalize from there, as e.g. the linux zr36057/60 driver does it. 239 + it and initialize from there, as e.g. the linux zr36057/60 driver does it. 240 240 ========================================================================= */ 241 241 242 242 static const char zr36050_dqt[0x86] = {
+1 -1
drivers/media/video/zoran/zr36060.c
··· 227 227 228 228 Could be variable, but until it's not needed it they are just fixed to save 229 229 memory. Otherwise expand zr36060 structure with arrays, push the values to 230 - it and initalize from there, as e.g. the linux zr36057/60 driver does it. 230 + it and initialize from there, as e.g. the linux zr36057/60 driver does it. 231 231 ========================================================================= */ 232 232 233 233 static const char zr36060_dqt[0x86] = {
+2 -2
drivers/message/fusion/mptbase.c
··· 1794 1794 ioc->sh = NULL; 1795 1795 ioc->cached_fw = NULL; 1796 1796 1797 - /* Initilize SCSI Config Data structure 1797 + /* Initialize SCSI Config Data structure 1798 1798 */ 1799 1799 memset(&ioc->spi_data, 0, sizeof(SpiCfgData)); 1800 1800 ··· 2471 2471 if ((ret == 0) && (reason == MPT_HOSTEVENT_IOC_BRINGUP)) { 2472 2472 2473 2473 /* 2474 - * Initalize link list for inactive raid volumes. 2474 + * Initialize link list for inactive raid volumes. 2475 2475 */ 2476 2476 mutex_init(&ioc->raid_data.inactive_list_mutex); 2477 2477 INIT_LIST_HEAD(&ioc->raid_data.inactive_list);
+1 -1
drivers/mtd/nand/denali.c
··· 1836 1836 .pattern = mirror_pattern, 1837 1837 }; 1838 1838 1839 - /* initalize driver data structures */ 1839 + /* initialize driver data structures */ 1840 1840 void denali_drv_init(struct denali_nand_info *denali) 1841 1841 { 1842 1842 denali->idx = 0;
+2 -2
drivers/net/3c527.c
··· 729 729 * mc32_load_rx_ring - load the ring of receive buffers 730 730 * @dev: 3c527 to build the ring for 731 731 * 732 - * This initalises the on-card and driver datastructures to 732 + * This initialises the on-card and driver datastructures to 733 733 * the point where mc32_start_transceiver() can be called. 734 734 * 735 735 * The card sets up the receive ring for us. We are required to use the 736 736 * ring it provides, although the size of the ring is configurable. 737 737 * 738 738 * We allocate an sk_buff for each ring entry in turn and 739 - * initalise its house-keeping info. At the same time, we read 739 + * initialise its house-keeping info. At the same time, we read 740 740 * each 'next' pointer in our rx_ring array. This reduces slow 741 741 * shared-memory reads and makes it easy to access predecessor 742 742 * descriptors.
+1 -1
drivers/net/appletalk/ipddp.c
··· 80 80 if (version_printed++ == 0) 81 81 printk(version); 82 82 83 - /* Initalize the device structure. */ 83 + /* Initialize the device structure. */ 84 84 dev->netdev_ops = &ipddp_netdev_ops; 85 85 86 86 dev->type = ARPHRD_IPDDP; /* IP over DDP tunnel */
+1 -1
drivers/net/hp100.c
··· 1071 1071 if (lp->mode == 1) 1072 1072 hp100_init_pdls(dev); 1073 1073 1074 - /* Go to performance page and initalize isr and imr registers */ 1074 + /* Go to performance page and initialize isr and imr registers */ 1075 1075 hp100_page(PERFORMANCE); 1076 1076 hp100_outw(0xfefe, IRQ_MASK); /* mask off all ints */ 1077 1077 hp100_outw(0xffff, IRQ_STATUS); /* ack IRQ */
+1 -1
drivers/net/ibm_newemac/core.c
··· 1044 1044 DBG(dev, "change_mtu(%d)" NL, new_mtu); 1045 1045 1046 1046 if (netif_running(ndev)) { 1047 - /* Check if we really need to reinitalize RX ring */ 1047 + /* Check if we really need to reinitialize RX ring */ 1048 1048 if (emac_rx_skb_size(ndev->mtu) != emac_rx_skb_size(new_mtu)) 1049 1049 ret = emac_resize_rx_ring(dev, new_mtu); 1050 1050 }
+1 -1
drivers/net/ksz884x.c
··· 6812 6812 static int fast_aging; 6813 6813 6814 6814 /** 6815 - * netdev_init - initalize network device. 6815 + * netdev_init - initialize network device. 6816 6816 * @dev: Network device. 6817 6817 * 6818 6818 * This function initializes the network device.
+1 -1
drivers/net/ll_temac_main.c
··· 449 449 return (0); 450 450 } 451 451 452 - /* Initilize temac */ 452 + /* Initialize temac */ 453 453 static void temac_device_reset(struct net_device *ndev) 454 454 { 455 455 struct temac_local *lp = netdev_priv(ndev);
+10 -10
drivers/net/tulip/dmfe.c
··· 589 589 db->dm910x_chk_mode = 1; /* Enter the check mode */ 590 590 } 591 591 592 - /* Initilize DM910X board */ 592 + /* Initialize DM910X board */ 593 593 dmfe_init_dm910x(dev); 594 594 595 595 /* Active System Interface */ ··· 606 606 } 607 607 608 608 609 - /* Initilize DM910X board 609 + /* Initialize DM910X board 610 610 * Reset DM910X board 611 - * Initilize TX/Rx descriptor chain structure 611 + * Initialize TX/Rx descriptor chain structure 612 612 * Send the set-up frame 613 613 * Enable Tx/Rx machine 614 614 */ ··· 649 649 if ( !(db->media_mode & DMFE_AUTO) ) 650 650 db->op_mode = db->media_mode; /* Force Mode */ 651 651 652 - /* Initiliaze Transmit/Receive decriptor and CR3/4 */ 652 + /* Initialize Transmit/Receive decriptor and CR3/4 */ 653 653 dmfe_descriptor_init(db, ioaddr); 654 654 655 655 /* Init CR6 to program DM910x operation */ ··· 1288 1288 * Stop DM910X board 1289 1289 * Free Tx/Rx allocated memory 1290 1290 * Reset DM910X board 1291 - * Re-initilize DM910X board 1291 + * Re-initialize DM910X board 1292 1292 */ 1293 1293 1294 1294 static void dmfe_dynamic_reset(struct DEVICE *dev) ··· 1316 1316 netif_carrier_off(dev); 1317 1317 db->wait_reset = 0; 1318 1318 1319 - /* Re-initilize DM910X board */ 1319 + /* Re-initialize DM910X board */ 1320 1320 dmfe_init_dm910x(dev); 1321 1321 1322 1322 /* Restart upper layer interface */ ··· 1447 1447 1448 1448 /* 1449 1449 * Send a setup frame for DM9132 1450 - * This setup frame initilize DM910X address filter mode 1450 + * This setup frame initialize DM910X address filter mode 1451 1451 */ 1452 1452 1453 1453 static void dm9132_id_table(struct DEVICE *dev) ··· 1489 1489 1490 1490 /* 1491 1491 * Send a setup frame for DM9102/DM9102A 1492 - * This setup frame initilize DM910X address filter mode 1492 + * This setup frame initialize DM910X address filter mode 1493 1493 */ 1494 1494 1495 1495 static void send_filter_frame(struct DEVICE *dev) ··· 2142 2142 pci_set_power_state(pci_dev, PCI_D0); 2143 2143 pci_restore_state(pci_dev); 2144 2144 2145 - /* Re-initilize DM910X board */ 2145 + /* Re-initialize DM910X board */ 2146 2146 dmfe_init_dm910x(dev); 2147 2147 2148 2148 /* Disable WOL */ ··· 2196 2196 2197 2197 /* Description: 2198 2198 * when user used insmod to add module, system invoked init_module() 2199 - * to initilize and register. 2199 + * to initialize and register. 2200 2200 */ 2201 2201 2202 2202 static int __init dmfe_init_module(void)
+1 -1
drivers/net/wimax/i2400m/control.c
··· 50 50 * 51 51 * ROADMAP 52 52 * 53 - * i2400m_dev_initalize() Called by i2400m_dev_start() 53 + * i2400m_dev_initialize() Called by i2400m_dev_start() 54 54 * i2400m_set_init_config() 55 55 * i2400m_cmd_get_state() 56 56 * i2400m_dev_shutdown() Called by i2400m_dev_stop()
+2 -2
drivers/parisc/ccio-dma.c
··· 1241 1241 }; 1242 1242 1243 1243 /** 1244 - * ccio_ioc_init - Initalize the I/O Controller 1244 + * ccio_ioc_init - Initialize the I/O Controller 1245 1245 * @ioc: The I/O Controller. 1246 1246 * 1247 - * Initalize the I/O Controller which includes setting up the 1247 + * Initialize the I/O Controller which includes setting up the 1248 1248 * I/O Page Directory, the resource map, and initalizing the 1249 1249 * U2/Uturn chip into virtual mode. 1250 1250 */
+1 -1
drivers/pcmcia/sa11xx_base.c
··· 231 231 232 232 sinfo->nskt = nr; 233 233 234 - /* Initiliaze processor specific parameters */ 234 + /* Initialize processor specific parameters */ 235 235 for (i = 0; i < nr; i++) { 236 236 skt = &sinfo->skt[i]; 237 237
+1 -1
drivers/scsi/advansys.c
··· 9717 9717 asc_dvc->bug_fix_cntl = 0; 9718 9718 asc_dvc->pci_fix_asyn_xfer = 0; 9719 9719 asc_dvc->pci_fix_asyn_xfer_always = 0; 9720 - /* asc_dvc->init_state initalized in AscInitGetConfig(). */ 9720 + /* asc_dvc->init_state initialized in AscInitGetConfig(). */ 9721 9721 asc_dvc->sdtr_done = 0; 9722 9722 asc_dvc->cur_total_qng = 0; 9723 9723 asc_dvc->is_in_int = 0;
+2 -2
drivers/scsi/aic94xx/aic94xx_seq.c
··· 588 588 * asd_init_cseq_scratch -- setup and init CSEQ 589 589 * @asd_ha: pointer to host adapter structure 590 590 * 591 - * Setup and initialize Central sequencers. Initialiaze the mode 591 + * Setup and initialize Central sequencers. Initialize the mode 592 592 * independent and dependent scratch page to the default settings. 593 593 */ 594 594 static void asd_init_cseq_scratch(struct asd_ha_struct *asd_ha) ··· 782 782 asd_write_reg_word(asd_ha, LmSEQ_OOB_INT_ENABLES(lseq), 0); 783 783 /* 784 784 * Set the desired interval between transmissions of the NOTIFY 785 - * (ENABLE SPINUP) primitive. Must be initilized to val - 1. 785 + * (ENABLE SPINUP) primitive. Must be initialized to val - 1. 786 786 */ 787 787 asd_write_reg_word(asd_ha, LmSEQ_NOTIFY_TIMER_TIMEOUT(lseq), 788 788 ASD_NOTIFY_TIMEOUT - 1);
+1 -1
drivers/scsi/bfa/vport.c
··· 789 789 switch (status) { 790 790 case BFA_STATUS_OK: 791 791 /* 792 - * Initialiaze the V-Port fields 792 + * Initialize the V-Port fields 793 793 */ 794 794 __vport_fcid(vport) = bfa_lps_get_pid(vport->lps); 795 795 vport->vport_stats.fdisc_accepts++;
+1 -1
drivers/scsi/pm8001/pm8001_hwi.c
··· 1082 1082 } 1083 1083 1084 1084 /** 1085 - * pm8001_chip_iounmap - which maped when initilized. 1085 + * pm8001_chip_iounmap - which maped when initialized. 1086 1086 * @pm8001_ha: our hba card information 1087 1087 */ 1088 1088 static void pm8001_chip_iounmap(struct pm8001_hba_info *pm8001_ha)
+1 -1
drivers/scsi/qla4xxx/ql4_init.c
··· 183 183 **/ 184 184 static int qla4xxx_init_local_data(struct scsi_qla_host *ha) 185 185 { 186 - /* Initilize aen queue */ 186 + /* Initialize aen queue */ 187 187 ha->aen_q_count = MAX_AEN_ENTRIES; 188 188 189 189 return qla4xxx_get_firmware_status(ha);
+3 -3
drivers/serial/sn_console.c
··· 470 470 } 471 471 472 472 if (port->sc_port.state) { 473 - /* The serial_core stuffs are initilized, use them */ 473 + /* The serial_core stuffs are initialized, use them */ 474 474 tty = port->sc_port.state->port.tty; 475 475 } 476 476 else { ··· 551 551 BUG_ON(!port->sc_is_asynch); 552 552 553 553 if (port->sc_port.state) { 554 - /* We're initilized, using serial core infrastructure */ 554 + /* We're initialized, using serial core infrastructure */ 555 555 xmit = &port->sc_port.state->xmit; 556 556 } else { 557 557 /* Probably sn_sal_switch_to_asynch has been run but serial core isn't 558 - * initilized yet. Just return. Writes are going through 558 + * initialized yet. Just return. Writes are going through 559 559 * sn_sal_console_write (due to register_console) at this time. 560 560 */ 561 561 return;
+1 -1
drivers/staging/comedi/drivers/usbdux.c
··· 2087 2087 if (ret < 0) 2088 2088 return ret; 2089 2089 2090 - /* initalise the buffer */ 2090 + /* initialise the buffer */ 2091 2091 for (i = 0; i < this_usbduxsub->sizePwmBuf; i++) 2092 2092 ((char *)(this_usbduxsub->urbPwm->transfer_buffer))[i] = 0; 2093 2093
+3 -3
drivers/staging/octeon/cvmx-cmd-queue.c
··· 140 140 if (qstate->base_ptr_div128) { 141 141 if (max_depth != (int)qstate->max_depth) { 142 142 cvmx_dprintf("ERROR: cvmx_cmd_queue_initialize: " 143 - "Queue already initalized with different " 143 + "Queue already initialized with different " 144 144 "max_depth (%d).\n", 145 145 (int)qstate->max_depth); 146 146 return CVMX_CMD_QUEUE_INVALID_PARAM; 147 147 } 148 148 if (fpa_pool != qstate->fpa_pool) { 149 149 cvmx_dprintf("ERROR: cvmx_cmd_queue_initialize: " 150 - "Queue already initalized with different " 150 + "Queue already initialized with different " 151 151 "FPA pool (%u).\n", 152 152 qstate->fpa_pool); 153 153 return CVMX_CMD_QUEUE_INVALID_PARAM; 154 154 } 155 155 if ((pool_size >> 3) - 1 != qstate->pool_size_m1) { 156 156 cvmx_dprintf("ERROR: cvmx_cmd_queue_initialize: " 157 - "Queue already initalized with different " 157 + "Queue already initialized with different " 158 158 "FPA pool size (%u).\n", 159 159 (qstate->pool_size_m1 + 1) << 3); 160 160 return CVMX_CMD_QUEUE_INVALID_PARAM;
+1 -1
drivers/staging/pohmelfs/inode.c
··· 848 848 } 849 849 850 850 /* 851 - * ->alloc_inode() callback. Allocates inode and initilizes private data. 851 + * ->alloc_inode() callback. Allocates inode and initializes private data. 852 852 */ 853 853 static struct inode *pohmelfs_alloc_inode(struct super_block *sb) 854 854 {
+2 -2
drivers/staging/rt2860/common/cmm_wpa.c
··· 427 427 /* 428 428 ========================================================================== 429 429 Description: 430 - This is a function to initilize 4-way handshake 430 + This is a function to initialize 4-way handshake 431 431 432 432 Return: 433 433 ··· 867 867 ========================================================================== 868 868 Description: 869 869 When receiving the last packet of 4-way pairwisekey handshake. 870 - Initilize 2-way groupkey handshake following. 870 + Initialize 2-way groupkey handshake following. 871 871 Return: 872 872 ========================================================================== 873 873 */
+3 -3
drivers/staging/rtl8192e/r8190_rtl8256.c
··· 501 501 if((priv->ieee80211->eRFPowerState == eRfOff) && RT_IN_PS_LEVEL(pPSC, RT_RF_OFF_LEVL_HALT_NIC)) 502 502 { // The current RF state is OFF and the RF OFF level is halting the NIC, re-initialize the NIC. 503 503 bool rtstatus = true; 504 - u32 InitilizeCount = 3; 504 + u32 InitializeCount = 3; 505 505 do 506 506 { 507 - InitilizeCount--; 507 + InitializeCount--; 508 508 priv->RegRfOff = false; 509 509 rtstatus = NicIFEnableNIC(dev); 510 - }while( (rtstatus != true) &&(InitilizeCount >0) ); 510 + }while( (rtstatus != true) &&(InitializeCount >0) ); 511 511 512 512 if(rtstatus != true) 513 513 {
+1 -1
drivers/usb/serial/kl5kusb105.c
··· 261 261 262 262 spin_lock_init(&priv->lock); 263 263 264 - /* priv->termios is left uninitalized until port opening */ 264 + /* priv->termios is left uninitialized until port opening */ 265 265 init_waitqueue_head(&serial->port[i]->write_wait); 266 266 } 267 267
+1 -1
drivers/usb/wusbcore/wusbhc.c
··· 26 26 * the one that requires (phase B, wusbhc_b_{create,destroy}). 27 27 * 28 28 * This is so because usb_add_hcd() will start the HC, and thus, all 29 - * the HC specific stuff has to be already initialiazed (like sysfs 29 + * the HC specific stuff has to be already initialized (like sysfs 30 30 * thingies). 31 31 */ 32 32 #include <linux/device.h>
+1 -1
drivers/uwb/wlp/wss-lc.c
··· 180 180 * If memory was allocated for the kobject's name then it will 181 181 * be freed by the kobject system during this time. 182 182 * 183 - * The EDA cache is removed and reinitilized when the WSS is removed. We 183 + * The EDA cache is removed and reinitialized when the WSS is removed. We 184 184 * thus loose knowledge of members of this WSS at that time and need not do 185 185 * it here. 186 186 */
+1 -1
drivers/video/carminefb.c
··· 432 432 u32 loops; 433 433 u32 ret; 434 434 435 - /* Initalize Carmine */ 435 + /* Initialize Carmine */ 436 436 /* Sets internal clock */ 437 437 c_set_hw_reg(hw, CARMINE_CTL_REG + CARMINE_CTL_REG_CLOCK_ENABLE, 438 438 CARMINE_DFLT_IP_CLOCK_ENABLE);
+1 -1
drivers/video/tgafb.c
··· 305 305 TGA_WRITE_REG(par, htimings, TGA_HORIZ_REG); 306 306 TGA_WRITE_REG(par, vtimings, TGA_VERT_REG); 307 307 308 - /* Initalise RAMDAC. */ 308 + /* Initialise RAMDAC. */ 309 309 if (tga_type == TGA_TYPE_8PLANE && tga_bus_pci) { 310 310 311 311 /* Init BT485 RAMDAC registers. */
+1 -1
fs/befs/linuxvfs.c
··· 436 436 init_once); 437 437 if (befs_inode_cachep == NULL) { 438 438 printk(KERN_ERR "befs_init_inodecache: " 439 - "Couldn't initalize inode slabcache\n"); 439 + "Couldn't initialize inode slabcache\n"); 440 440 return -ENOMEM; 441 441 } 442 442
+1 -1
fs/ecryptfs/crypto.c
··· 762 762 763 763 /** 764 764 * ecryptfs_init_crypt_ctx 765 - * @crypt_stat: Uninitilized crypt stats structure 765 + * @crypt_stat: Uninitialized crypt stats structure 766 766 * 767 767 * Initialize the crypto context. 768 768 *
+1 -1
fs/ext4/extents.c
··· 2918 2918 * One of more index blocks maybe needed if the extent tree grow after 2919 2919 * the unintialized extent split. To prevent ENOSPC occur at the IO 2920 2920 * complete, we need to split the uninitialized extent before DIO submit 2921 - * the IO. The uninitilized extent called at this time will be split 2921 + * the IO. The uninitialized extent called at this time will be split 2922 2922 * into three uninitialized extent(at most). After IO complete, the part 2923 2923 * being filled will be convert to initialized by the end_io callback function 2924 2924 * via ext4_convert_unwritten_extents().
+1 -1
fs/ext4/super.c
··· 3008 3008 ext4_ext_init(sb); 3009 3009 err = ext4_mb_init(sb, needs_recovery); 3010 3010 if (err) { 3011 - ext4_msg(sb, KERN_ERR, "failed to initalize mballoc (%d)", 3011 + ext4_msg(sb, KERN_ERR, "failed to initialize mballoc (%d)", 3012 3012 err); 3013 3013 goto failed_mount4; 3014 3014 }
+1 -1
fs/freevxfs/vxfs_super.c
··· 135 135 } 136 136 137 137 /** 138 - * vxfs_read_super - read superblock into memory and initalize filesystem 138 + * vxfs_read_super - read superblock into memory and initialize filesystem 139 139 * @sbp: VFS superblock (to fill) 140 140 * @dp: fs private mount data 141 141 * @silent: do not complain loudly when sth is wrong
+1 -1
fs/ocfs2/super.c
··· 2476 2476 kfree(osb->slot_recovery_generations); 2477 2477 /* FIXME 2478 2478 * This belongs in journal shutdown, but because we have to 2479 - * allocate osb->journal at the start of ocfs2_initalize_osb(), 2479 + * allocate osb->journal at the start of ocfs2_initialize_osb(), 2480 2480 * we free it here. 2481 2481 */ 2482 2482 kfree(osb->journal);
+1 -1
fs/reiserfs/inode.c
··· 1221 1221 inode_set_bytes(inode, 1222 1222 to_real_used_space(inode, inode->i_blocks, 1223 1223 SD_V2_SIZE)); 1224 - /* read persistent inode attributes from sd and initalise 1224 + /* read persistent inode attributes from sd and initialise 1225 1225 generic inode flags from them */ 1226 1226 REISERFS_I(inode)->i_attrs = sd_v2_attrs(sd); 1227 1227 sd_attrs_to_i_attrs(sd_v2_attrs(sd), inode);
+1 -1
lib/random32.c
··· 131 131 132 132 /* 133 133 * Generate better values after random number generator 134 - * is fully initalized. 134 + * is fully initialized. 135 135 */ 136 136 static int __init random32_reseed(void) 137 137 {
+1 -1
net/netfilter/ipvs/ip_vs_lblc.c
··· 11 11 * Changes: 12 12 * Martin Hamilton : fixed the terrible locking bugs 13 13 * *lock(tbl->lock) ==> *lock(&tbl->lock) 14 - * Wensong Zhang : fixed the uninitilized tbl->lock bug 14 + * Wensong Zhang : fixed the uninitialized tbl->lock bug 15 15 * Wensong Zhang : added doing full expiration check to 16 16 * collect stale entries of 24+ hours when 17 17 * no partial expire check in a half hour
+1 -1
net/netfilter/ipvs/ip_vs_lblcr.c
··· 386 386 ip_vs_addr_copy(dest->af, &en->addr, daddr); 387 387 en->lastuse = jiffies; 388 388 389 - /* initilize its dest set */ 389 + /* initialize its dest set */ 390 390 atomic_set(&(en->set.size), 0); 391 391 INIT_LIST_HEAD(&en->set.list); 392 392 rwlock_init(&en->set.lock);
+1 -1
net/sctp/associola.c
··· 172 172 asoc->timeouts[SCTP_EVENT_TIMEOUT_AUTOCLOSE] = 173 173 (unsigned long)sp->autoclose * HZ; 174 174 175 - /* Initilizes the timers */ 175 + /* Initializes the timers */ 176 176 for (i = SCTP_EVENT_TIMEOUT_NONE; i < SCTP_NUM_TIMEOUT_TYPES; ++i) 177 177 setup_timer(&asoc->timers[i], sctp_timer_events[i], 178 178 (unsigned long)asoc);
+1 -1
net/sctp/protocol.c
··· 1162 1162 /* Set the pressure threshold to be a fraction of global memory that 1163 1163 * is up to 1/2 at 256 MB, decreasing toward zero with the amount of 1164 1164 * memory, with a floor of 128 pages. 1165 - * Note this initalizes the data in sctpv6_prot too 1165 + * Note this initializes the data in sctpv6_prot too 1166 1166 * Unabashedly stolen from tcp_init 1167 1167 */ 1168 1168 nr_pages = totalram_pages - totalhigh_pages;
+1 -1
security/smack/smack_lsm.c
··· 3227 3227 cred = (struct cred *) current->cred; 3228 3228 cred->security = &smack_known_floor.smk_known; 3229 3229 3230 - /* initilize the smack_know_list */ 3230 + /* initialize the smack_know_list */ 3231 3231 init_smack_know_list(); 3232 3232 /* 3233 3233 * Initialize locks
+1 -1
sound/pci/trident/trident_main.c
··· 1055 1055 1056 1056 spin_lock_irq(&trident->reg_lock); 1057 1057 1058 - // Initilize the channel and set channel Mode 1058 + // Initialize the channel and set channel Mode 1059 1059 outb(0, TRID_REG(trident, LEGACY_DMAR15)); 1060 1060 1061 1061 // Set DMA channel operation mode register
+1 -1
sound/soc/fsl/mpc8610_hpcd.c
··· 46 46 }; 47 47 48 48 /** 49 - * mpc8610_hpcd_machine_probe: initalize the board 49 + * mpc8610_hpcd_machine_probe: initialize the board 50 50 * 51 51 * This function is called when platform_device_add() is called. It is used 52 52 * to initialize the board-specific hardware.
+1 -1
sound/soc/soc-core.c
··· 1307 1307 } 1308 1308 1309 1309 /* 1310 - * Attempt to initialise any uninitalised cards. Must be called with 1310 + * Attempt to initialise any uninitialised cards. Must be called with 1311 1311 * client_mutex. 1312 1312 */ 1313 1313 static void snd_soc_instantiate_cards(void)