···44Description:55 The /sys/block/<disk>/stat files displays the I/O66 statistics of disk <disk>. They contain 11 fields:77- 1 - reads completed succesfully77+ 1 - reads completed successfully88 2 - reads merged99 3 - sectors read1010 4 - time spent reading (ms)
+2-2
Documentation/DocBook/genericirq.tmpl
···417417 </para>418418 <para>419419 To make use of the split implementation, replace the call to420420- __do_IRQ by a call to desc->chip->handle_irq() and associate421421- the appropriate handler function to desc->chip->handle_irq().420420+ __do_IRQ by a call to desc->handle_irq() and associate421421+ the appropriate handler function to desc->handle_irq().422422 In most cases the generic handler implementations should423423 be sufficient.424424 </para>
+1-1
Documentation/DocBook/mtdnand.tmpl
···362362 <sect1 id="Multiple_chip_control">363363 <title>Multiple chip control</title>364364 <para>365365- The nand driver can control chip arrays. Therefor the365365+ The nand driver can control chip arrays. Therefore the366366 board driver must provide an own select_chip function. This367367 function must (de)select the requested chip.368368 The function pointer in the nand_chip structure must
+1-1
Documentation/DocBook/v4l/videodev2.h.xml
···492492 * you do, leave them untouched.493493 * Inluding less markers will make the494494 * resulting code smaller, but there will495495- * be fewer aplications which can read it.495495+ * be fewer applications which can read it.496496 * The presence of the APP and COM marker497497 * is influenced by APP_len and COM_len498498 * ONLY, not by this property! */
+1-1
Documentation/DocBook/writing-an-alsa-driver.tmpl
···53185318 pages of the given size and map them onto the virtually contiguous53195319 memory. The virtual pointer is addressed in runtime->dma_area.53205320 The physical address (runtime->dma_addr) is set to zero,53215321- because the buffer is physically non-contigous.53215321+ because the buffer is physically non-contiguous.53225322 The physical address table is set up in sgbuf->table.53235323 You can get the physical address at a certain offset via53245324 <function>snd_pcm_sgbuf_get_addr()</function>.
+1-1
Documentation/dvb/README.dvb-usb
···8585 - moved transfer control (pid filter, fifo control) from usb driver to frontend, it seems8686 better settled there (added xfer_ops-struct)8787 - created a common files for frontends (mc/p/mb)8888- 2004-09-28 - added support for a new device (Unkown, vendor ID is Hyper-Paltek)8888+ 2004-09-28 - added support for a new device (Unknown, vendor ID is Hyper-Paltek)8989 2004-09-20 - added support for a new device (Compro DVB-U2000), thanks9090 to Amaury Demol for reporting9191 - changed usb TS transfer method (several urbs, stopping transfer
+3-4
Documentation/edac.txt
···80808181 broken_parity_status82828383-as is located in /sys/devices/pci<XXX>/0000:XX:YY.Z directorys for8383+as is located in /sys/devices/pci<XXX>/0000:XX:YY.Z directories for8484PCI devices.85858686FUTURE HARDWARE SCANNING···288288289289 'ue_noinfo_count'290290291291- This attribute file displays the number of UEs that292292- have occurred have occurred with no informations as to which DIMM293293- slot is having errors.291291+ This attribute file displays the number of UEs that have occurred292292+ with no information as to which DIMM slot is having errors.294293295294296295Total Correctable Errors count attribute file:
+1-1
Documentation/lguest/lguest.c
···304304 addr = mmap(NULL, getpagesize() * num,305305 PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE, fd, 0);306306 if (addr == MAP_FAILED)307307- err(1, "Mmaping %u pages of /dev/zero", num);307307+ err(1, "Mmapping %u pages of /dev/zero", num);308308309309 /*310310 * One neat mmap feature is that you can close the fd, and it
+2
Documentation/oops-tracing.txt
···257257258258 10: 'W' if a warning has previously been issued by the kernel.259259260260+ 11: 'C' if a staging driver has been loaded.261261+260262The primary reason for the 'Tainted: ' string is to tell kernel261263debuggers if this is a clean kernel or if anything unusual has262264occurred. Tainting is permanent: even if an offending module is
+1-1
Documentation/power/regulator/consumer.txt
···104104105105Consumers can control their supply current limit by calling :-106106107107-int regulator_set_current_limit(regulator, min_uV, max_uV);107107+int regulator_set_current_limit(regulator, min_uA, max_uA);108108109109Where min_uA and max_uA are the minimum and maximum acceptable current limit in110110microamps.
+1-1
Documentation/scsi/ChangeLog.megaraid_sas
···185185 Disks are exposed with WCE=1. User is advised to enable Write Back186186 mode only when the controller has battery backup. At this time187187 Synhronize cache is not supported by the FW. Driver will short-cycle188188- the cmd and return sucess without sending down to FW.188188+ the cmd and return success without sending down to FW.1891891901901 Release Date : Sun Jan. 14 11:21:32 PDT 2007 -191191 Sumant Patro <Sumant.Patro@lsil.com>/Bo Yang
+1-1
Documentation/spi/spi-summary
···538538The bulk of the driver will be managing the I/O queue fed by transfer().539539540540That queue could be purely conceptual. For example, a driver used only541541-for low-frequency sensor acess might be fine using synchronous PIO.541541+for low-frequency sensor access might be fine using synchronous PIO.542542543543But the queue will probably be very real, using message->queue, PIO,544544often DMA (especially if the root filesystem is in SPI flash), and
+3-3
Documentation/sysctl/kernel.txt
···139139core_pipe_limit:140140141141This sysctl is only applicable when core_pattern is configured to pipe core142142-files to user space helper a (when the first character of core_pattern is a '|',142142+files to a user space helper (when the first character of core_pattern is a '|',143143see above). When collecting cores via a pipe to an application, it is144144-occasionally usefull for the collecting application to gather data about the144144+occasionally useful for the collecting application to gather data about the145145crashing process from its /proc/pid directory. In order to do this safely, the146146kernel must wait for the collecting process to exit, so as not to remove the147147crashing processes proc files prematurely. This in turn creates the possibility···152152processes above that value are noted via the kernel log and their cores are153153skipped. 0 is a special value, indicating that unlimited processes may be154154captured in parallel, but that no waiting will take place (i.e. the collecting155155-process is not guaranteed access to /proc/<crahing pid>/). This value defaults155155+process is not guaranteed access to /proc/<crashing pid>/). This value defaults156156to 0.157157158158==============================================================
+1-1
Documentation/sysctl/vm.txt
···370370mmap_min_addr371371372372This file indicates the amount of address space which a user process will373373-be restricted from mmaping. Since kernel null dereference bugs could373373+be restricted from mmapping. Since kernel null dereference bugs could374374accidentally operate based on the information in the first couple of pages375375of memory userspace processes should not be allowed to write to them. By376376default this value is set to 0 and no protections will be enforced by the
+1-1
Documentation/timers/hpet.txt
···33The High Precision Event Timer (HPET) hardware follows a specification44by Intel and Microsoft which can be found at5566- http://www.intel.com/technology/architecture/hpetspec.htm66+ http://www.intel.com/hardwaredesign/hpetspec_1.pdf7788Each HPET has one fixed-rate counter (at 10+ MHz, hence "High Precision")99and up to 32 comparators. Normally three or more comparators are provided,
+1-1
Documentation/video4linux/gspca.txt
···6677xxxx vend:prod88----99-spca501 0000:0000 MystFromOri Unknow Camera99+spca501 0000:0000 MystFromOri Unknown Camera1010m5602 0402:5602 ALi Video Camera Controller1111spca501 040a:0002 Kodak DVC-3251212spca500 040a:0300 Kodak EZ200
+1-1
Documentation/vm/page-types.c
···301301 present = (flags >> i) & 1;302302 if (!page_flag_names[i]) {303303 if (present)304304- fatal("unkown flag bit %d\n", i);304304+ fatal("unknown flag bit %d\n", i);305305 continue;306306 }307307 buf[j++] = present ? page_flag_names[i][0] : '_';
+1-1
Documentation/vm/slub.txt
···245245has the length of 8 characters. However, a 8 character string needs a246246terminating 0. That zero has overwritten the first byte of the Redzone field.247247After reporting the details of the issue encountered the FIX SLUB message248248-tell us that SLUB has restored the Redzone to its proper value and then248248+tells us that SLUB has restored the Redzone to its proper value and then249249system operations continue.250250251251Emergency operations:
+1-1
arch/alpha/mm/numa.c
···197197 }198198199199 if (bootmap_start == -1)200200- panic("couldn't find a contigous place for the bootmap");200200+ panic("couldn't find a contiguous place for the bootmap");201201202202 /* Allocate the bootmap and mark the whole MM as reserved. */203203 bootmap_size = init_bootmem_node(NODE_DATA(nid), bootmap_start,
+1-1
arch/arm/common/scoop.c
···8282{8383 struct scoop_dev *sdev = container_of(chip, struct scoop_dev, gpio);84848585- /* XXX: I'm usure, but it seems so */8585+ /* XXX: I'm unsure, but it seems so */8686 return ioread16(sdev->base + SCOOP_GPRR) & (1 << (offset + 1));8787}8888
+1-1
arch/arm/mach-bcmring/include/csp/reg.h
···1616/**1717* @file reg.h1818*1919-* @brief Generic register defintions used in CSP1919+* @brief Generic register definitions used in CSP2020*/2121/****************************************************************************/2222
···8383* @brief Get next available transaction width8484*8585*8686-* @return On sucess : Next avail able transaction width8686+* @return On success : Next available transaction width8787* On failure : dmacHw_TRANSACTION_WIDTH_88888*8989* @note
···651651/**652652* Creates a descriptor ring from a memory mapping.653653*654654-* @return 0 on sucess, error code otherwise.654654+* @return 0 on success, error code otherwise.655655*/656656/****************************************************************************/657657
+1-1
arch/arm/mach-lh7a40x/include/mach/hardware.h
···3131/*3232 * This __REG() version gives the same results as the one above, except3333 * that we are fooling gcc somehow so it generates far better and smaller3434- * assembly code for access to contigous registers. It's a shame that gcc3434+ * assembly code for access to contiguous registers. It's a shame that gcc3535 * doesn't guess this by itself.3636 */3737#include <asm/types.h>
+1-1
arch/arm/mach-orion5x/pci.c
···463463 writel(win_enable, PCI_BAR_ENABLE);464464465465 /*466466- * Disable automatic update of address remaping when writing to BARs.466466+ * Disable automatic update of address remapping when writing to BARs.467467 */468468 orion5x_setbits(PCI_ADDR_DECODE_CTRL, 1);469469}
···11-# arch/arm/mach-s3c2410/Kconfig22-#31# Copyright 2007 Simtec Electronics42#53# Licensed under GPLv2
-4
arch/arm/mach-s3c2412/Kconfig
···11-# arch/arm/mach-s3c2412/Kconfig22-#31# Copyright 2007 Simtec Electronics42#53# Licensed under GPLv2···8890 help8991 Say Y here if you are using an VSTMS board90929191-9293endmenu9393-
-3
arch/arm/mach-s3c2440/Kconfig
···11-# arch/arm/mach-s3c2440/Kconfig22-#31# Copyright 2007 Simtec Electronics42#53# Licensed under GPLv2···107109 available via various sources. It can come with a 3.5" or 7" touch LCD.108110109111endmenu110110-
-4
arch/arm/mach-s3c2442/Kconfig
···11-# arch/arm/mach-s3c2442/Kconfig22-#31# Copyright 2007 Simtec Electronics42#53# Licensed under GPLv2···3436 help3537 Say Y here if you are using the Openmoko GTA02 / Freerunner GSM Phone36383737-3839endmenu3939-
-2
arch/arm/mach-s3c2443/Kconfig
···11-# arch/arm/mach-s3c2443/Kconfig22-#31# Copyright 2007 Simtec Electronics42#53# Licensed under GPLv2
···3030 [0] = "hsmmc",3131 [1] = "hsmmc",3232 [2] = "mmc_bus",3333- /* [3] = "48m", - note not succesfully used yet */3333+ /* [3] = "48m", - note not successfully used yet */3434};35353636
-2
arch/arm/mach-s5pc100/Kconfig
···11-# arch/arm/mach-s5pc100/Kconfig22-#31# Copyright 2009 Samsung Electronics Co.42# Byungho Min <bhmin@samsung.com>53#
+1-1
arch/arm/mach-sa1100/dma.c
···656566666767/**6868- * sa1100_request_dma - allocate one of the SA11x0's DMA chanels6868+ * sa1100_request_dma - allocate one of the SA11x0's DMA channels6969 * @device: The SA11x0 peripheral targeted by this request7070 * @device_id: An ascii name for the claiming device7171 * @callback: Function to be called when the DMA completes
+1-1
arch/arm/mach-u300/include/mach/u300-regs.h
···66 * Copyright (C) 2006-2009 ST-Ericsson AB77 * License terms: GNU General Public License (GPL) version 288 * Basic register address definitions in physical memory and99- * some block defintions for core devices like the timer.99+ * some block definitions for core devices like the timer.1010 * Author: Linus Walleij <linus.walleij@stericsson.com>1111 */1212
+1-1
arch/arm/plat-mxc/include/mach/iomux-mx3.h
···112112 * setups a single pin:113113 * - reserves the pin so that it is not claimed by another driver114114 * - setups the iomux according to the configuration115115- * - if the pin is configured as a GPIO, we claim it throug kernel gpiolib115115+ * - if the pin is configured as a GPIO, we claim it through kernel gpiolib116116 */117117int mxc_iomux_alloc_pin(const unsigned int pin, const char *label);118118/*
+1-1
arch/arm/plat-mxc/include/mach/iomux-mxc91231.h
···4848 * setups a single pin:4949 * - reserves the pin so that it is not claimed by another driver5050 * - setups the iomux according to the configuration5151- * - if the pin is configured as a GPIO, we claim it throug kernel gpiolib5151+ * - if the pin is configured as a GPIO, we claim it through kernel gpiolib5252 */5353int mxc_iomux_alloc_pin(const unsigned int pin_mode, const char *label);5454/*
+1-1
arch/arm/plat-mxc/pwm.c
···9494 * register to follow the ratio of duty_ns vs. period_ns9595 * accordingly.9696 *9797- * This is good enought for programming the brightness of9797+ * This is good enough for programming the brightness of9898 * the LCD backlight.9999 *100100 * The real implementation would divide PERCLK[0] first by
···124124#define TIPB_SWITCH_BASE (0xfffbc800)125125#define OMAP16XX_MMCSD2_SSW_MPU_CONF (TIPB_SWITCH_BASE + 0x160)126126127127-/* UART3 Registers Maping through MPU bus */127127+/* UART3 Registers Mapping through MPU bus */128128#define UART3_RHR (OMAP_UART3_BASE + 0)129129#define UART3_THR (OMAP_UART3_BASE + 0)130130#define UART3_DLL (OMAP_UART3_BASE + 0)
-2
arch/arm/plat-s3c/Kconfig
···11-# arch/arm/plat-s3c/Kconfig22-#31# Copyright 2007 Simtec Electronics42#53# Licensed under GPLv2
-2
arch/arm/plat-s3c24xx/Kconfig
···11-# arch/arm/plat-s3c24xx/Kconfig22-#31# Copyright 2007 Simtec Electronics42#53# Licensed under GPLv2
+1-1
arch/arm/plat-s3c24xx/include/plat/map.h
···6464/* the calculation for the VA of this must ensure that6565 * it is the same distance apart from the UART in the6666 * phsyical address space, as the initial mapping for the IO6767- * is done as a 1:1 maping. This puts it (currently) at6767+ * is done as a 1:1 mapping. This puts it (currently) at6868 * 0xFA800000, which is not in the way of any current mapping6969 * by the base system.7070*/
···11-# arch/arm/plat-s5pc1xx/Kconfig22-#31# Copyright 2009 Samsung Electronics Co.42# Byungho Min <bhmin@samsung.com>53#
+1-1
arch/avr32/boards/hammerhead/Kconfig
···2424 bool "Atmel AC97 Sound support"2525 help2626 This enables Sound support for the Hammerhead board. You may2727- also go trough the ALSA settings to get it working.2727+ also go through the ALSA settings to get it working.28282929 Choose 'Y' here if you have ordered a Corona daugther board and3030 want to make your board funky.
+1-1
arch/blackfin/kernel/traps.c
···619619620620/*621621 * Similar to get_user, do some address checking, then dereference622622- * Return true on sucess, false on bad address622622+ * Return true on success, false on bad address623623 */624624static bool get_instruction(unsigned short *val, unsigned short *address)625625{
···8080 * do_page_fault may have flushed the TLB so we have to restore8181 * the MMU registers.8282 */8383- local_save_flags(flags);8484- local_irq_disable();8383+ local_irq_save(flags);8584 pmd = (pmd_t *)(pgd + pgd_index(address));8685 if (pmd_none(*pmd))8786 goto exit;
-22
arch/cris/arch-v10/mm/tlb.c
···134134 local_irq_restore(flags);135135}136136137137-/* dump the entire TLB for debug purposes */138138-139139-#if 0140140-void141141-dump_tlb_all(void)142142-{143143- int i;144144- unsigned long flags;145145-146146- printk("TLB dump. LO is: pfn | reserved | global | valid | kernel | we |\n");147147-148148- local_save_flags(flags);149149- local_irq_disable();150150- for(i = 0; i < NUM_TLB_ENTRIES; i++) {151151- *R_TLB_SELECT = ( IO_FIELD(R_TLB_SELECT, index, i) );152152- printk("Entry %d: HI 0x%08lx, LO 0x%08lx\n",153153- i, *R_TLB_HI, *R_TLB_LO);154154- }155155- local_irq_restore(flags);156156-}157157-#endif158158-159137/*160138 * Initialize the context related info for a new mm_struct161139 * instance.
+1-1
arch/cris/mm/fault.c
···209209 /* Are we prepared to handle this kernel fault?210210 *211211 * (The kernel has valid exception-points in the source212212- * when it acesses user-memory. When it fails in one212212+ * when it accesses user-memory. When it fails in one213213 * of those points, we find it in a table and do a jump214214 * to some fixup code that loads an appropriate error215215 * code)
···7979(p6) br.cond.spnt .ia32_strace_check_retval8080 ;; // prevent RAW on r88181END(ia32_ret_from_clone)8282- // fall thrugh8282+ // fall through8383GLOBAL_ENTRY(ia32_ret_from_syscall)8484 PT_REGS_UNWIND_INFO(0)8585
+1-1
arch/ia64/include/asm/perfmon_default_smpl.h
···6767 unsigned long ip; /* where did the overflow interrupt happened */6868 unsigned long tstamp; /* ar.itc when entering perfmon intr. handler */69697070- unsigned short cpu; /* cpu on which the overfow occured */7070+ unsigned short cpu; /* cpu on which the overflow occured */7171 unsigned short set; /* event set active when overflow ocurred */7272 int tgid; /* thread group id (for NPTL, this is getpid()) */7373} pfm_default_smpl_entry_t;
···8484 case ESI_DESC_ENTRY_POINT:8585 break;8686 default:8787- printk(KERN_WARNING "Unkown table type %d found in "8787+ printk(KERN_WARNING "Unknown table type %d found in "8888 "ESI table, ignoring rest of table\n", *p);8989 return -ENODEV;9090 }
+1-1
arch/ia64/kernel/perfmon.c
···35233523 * IA64_THREAD_DBG_VALID set. This indicates a task which was35243524 * able to use the debug registers for debugging purposes via35253525 * ptrace(). Therefore we know it was not using them for35263526- * perfmormance monitoring, so we only decrement the number35263526+ * performance monitoring, so we only decrement the number35273527 * of "ptraced" debug register users to keep the count up to date35283528 */35293529int
+14-14
arch/m68k/ifpsp060/src/fpsp.S
···753753754754 bra.l _real_ovfl755755756756-# overflow occurred but is disabled. meanwhile, inexact is enabled. therefore,756756+# overflow occurred but is disabled. meanwhile, inexact is enabled. Therefore,757757# we must jump to real_inex().758758fovfl_inex_on:759759···1015101510161016 bra.l _real_unfl1017101710181018-# undeflow occurred but is disabled. meanwhile, inexact is enabled. therefore,10181018+# underflow occurred but is disabled. meanwhile, inexact is enabled. Therefore,10191019# we must jump to real_inex().10201020funfl_inex_on:10211021···2963296329642964 tst.w %d0 # is instr fmovm?29652965 bmi.b iea_dis_fmovm # yes29662966-# instruction is using an extended precision immediate operand. therefore,29662966+# instruction is using an extended precision immediate operand. Therefore,29672967# the total instruction length is 16 bytes.29682968iea_dis_immed:29692969 mov.l &0x10,%d0 # 16 bytes of instruction···96249624 bge.b sok_norm2 # thank goodness no9625962596269626# the multiply factor that we're trying to create should be a denorm96279627-# for the multiply to work. therefore, we're going to actually do a96279627+# for the multiply to work. Therefore, we're going to actually do a96289628# multiply with a denorm which will cause an unimplemented data type96299629# exception to be put into the machine which will be caught and corrected96309630# later. we don't do this with the DENORMs above because this method···12216122161221712217#1221812218# operand will underflow AND underflow or inexact is enabled.1221912219-# therefore, we must return the result rounded to extended precision.1221912219+# Therefore, we must return the result rounded to extended precision.1222012220#1222112221fin_sd_unfl_ena:1222212222 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)···12746127461274712747#1274812748# The destination was In Range and the source was a ZERO. The result,1274912749-# therefore, is an INF w/ the proper sign.1274912749+# Therefore, is an INF w/ the proper sign.1275012750# So, determine the sign and return a new INF (w/ the j-bit cleared).1275112751#1275212752 global fdiv_inf_load # global for fsgldiv···12996129961299712997#1299812998# operand will underflow AND underflow is enabled.1299912999-# therefore, we must return the result rounded to extended precision.1299912999+# Therefore, we must return the result rounded to extended precision.1300013000#1300113001fneg_sd_unfl_ena:1300213002 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)···13611136111361213612#1361313613# operand will underflow AND underflow is enabled.1361413614-# therefore, we must return the result rounded to extended precision.1361413614+# Therefore, we must return the result rounded to extended precision.1361513615#1361613616fabs_sd_unfl_ena:1361713617 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)···14973149731497414974#1497514975# the ZEROes have opposite signs:1497614976-# - therefore, we return +ZERO if the rounding modes are RN,RZ, or RP.1497614976+# - Therefore, we return +ZERO if the rounding modes are RN,RZ, or RP.1497714977# - -ZERO is returned in the case of RM.1497814978#1497914979fadd_zero_2_chk_rm:···15425154251542615426#1542715427# the ZEROes have the same signs:1542815428-# - therefore, we return +ZERO if the rounding mode is RN,RZ, or RP1542815428+# - Therefore, we return +ZERO if the rounding mode is RN,RZ, or RP1542915429# - -ZERO is returned in the case of RM.1543015430#1543115431fsub_zero_2_chk_rm:···15693156931569415694#1569515695# operand will underflow AND underflow is enabled.1569615696-# therefore, we must return the result rounded to extended precision.1569615696+# Therefore, we must return the result rounded to extended precision.1569715697#1569815698fsqrt_sd_unfl_ena:1569915699 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)···2100021000 tst.l %d02100121001 bne.b fout_pack_set2100221002# "mantissa" is all zero which means that the answer is zero. but, the '0402100321003-# algorithm allows the exponent to be non-zero. the 881/2 do not. therefore,2100321003+# algorithm allows the exponent to be non-zero. the 881/2 do not. Therefore,2100421004# if the mantissa is zero, I will zero the exponent, too.2100521005# the question now is whether the exponents sign bit is allowed to be non-zero2100621006# for a zero, also...···2174321743 rts21744217442174521745# #2174621746-# dnrm_lp(): normalize exponent/mantissa to specified threshhold #2174621746+# dnrm_lp(): normalize exponent/mantissa to specified threshold #2174721747# #2174821748# INPUT: #2174921749# %a0 : points to the operand to be denormalized #···2240222402 bgt.b unnorm_nrm_zero # yes; denorm only until exp = 022403224032240422404#2240522405-# exponent would not go < 0. therefore, number stays normalized2240522405+# exponent would not go < 0. Therefore, number stays normalized2240622406#2240722407 sub.w %d0, %d1 # shift exponent value2240822408 mov.w FTEMP_EX(%a0), %d0 # load old exponent
+13-13
arch/m68k/ifpsp060/src/pfpsp.S
···752752753753 bra.l _real_ovfl754754755755-# overflow occurred but is disabled. meanwhile, inexact is enabled. therefore,755755+# overflow occurred but is disabled. meanwhile, inexact is enabled. Therefore,756756# we must jump to real_inex().757757fovfl_inex_on:758758···1014101410151015 bra.l _real_unfl1016101610171017-# undeflow occurred but is disabled. meanwhile, inexact is enabled. therefore,10171017+# underflow occurred but is disabled. meanwhile, inexact is enabled. Therefore,10181018# we must jump to real_inex().10191019funfl_inex_on:10201020···2962296229632963 tst.w %d0 # is instr fmovm?29642964 bmi.b iea_dis_fmovm # yes29652965-# instruction is using an extended precision immediate operand. therefore,29652965+# instruction is using an extended precision immediate operand. Therefore,29662966# the total instruction length is 16 bytes.29672967iea_dis_immed:29682968 mov.l &0x10,%d0 # 16 bytes of instruction···58655865 rts5866586658675867# #58685868-# dnrm_lp(): normalize exponent/mantissa to specified threshhold #58685868+# dnrm_lp(): normalize exponent/mantissa to specified threshold #58695869# #58705870# INPUT: #58715871# %a0 : points to the operand to be denormalized #···65246524 bgt.b unnorm_nrm_zero # yes; denorm only until exp = 06525652565266526#65276527-# exponent would not go < 0. therefore, number stays normalized65276527+# exponent would not go < 0. Therefore, number stays normalized65286528#65296529 sub.w %d0, %d1 # shift exponent value65306530 mov.w FTEMP_EX(%a0), %d0 # load old exponent···79017901 tst.l %d079027902 bne.b fout_pack_set79037903# "mantissa" is all zero which means that the answer is zero. but, the '04079047904-# algorithm allows the exponent to be non-zero. the 881/2 do not. therefore,79047904+# algorithm allows the exponent to be non-zero. the 881/2 do not. Therefore,79057905# if the mantissa is zero, I will zero the exponent, too.79067906# the question now is whether the exponents sign bit is allowed to be non-zero79077907# for a zero, also...···8647864786488648#86498649# operand will underflow AND underflow or inexact is enabled.86508650-# therefore, we must return the result rounded to extended precision.86508650+# Therefore, we must return the result rounded to extended precision.86518651#86528652fin_sd_unfl_ena:86538653 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)···9177917791789178#91799179# The destination was In Range and the source was a ZERO. The result,91809180-# therefore, is an INF w/ the proper sign.91809180+# Therefore, is an INF w/ the proper sign.91819181# So, determine the sign and return a new INF (w/ the j-bit cleared).91829182#91839183 global fdiv_inf_load # global for fsgldiv···9427942794289428#94299429# operand will underflow AND underflow is enabled.94309430-# therefore, we must return the result rounded to extended precision.94309430+# Therefore, we must return the result rounded to extended precision.94319431#94329432fneg_sd_unfl_ena:94339433 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)···10042100421004310043#1004410044# operand will underflow AND underflow is enabled.1004510045-# therefore, we must return the result rounded to extended precision.1004510045+# Therefore, we must return the result rounded to extended precision.1004610046#1004710047fabs_sd_unfl_ena:1004810048 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)···11404114041140511405#1140611406# the ZEROes have opposite signs:1140711407-# - therefore, we return +ZERO if the rounding modes are RN,RZ, or RP.1140711407+# - Therefore, we return +ZERO if the rounding modes are RN,RZ, or RP.1140811408# - -ZERO is returned in the case of RM.1140911409#1141011410fadd_zero_2_chk_rm:···11856118561185711857#1185811858# the ZEROes have the same signs:1185911859-# - therefore, we return +ZERO if the rounding mode is RN,RZ, or RP1185911859+# - Therefore, we return +ZERO if the rounding mode is RN,RZ, or RP1186011860# - -ZERO is returned in the case of RM.1186111861#1186211862fsub_zero_2_chk_rm:···12124121241212512125#1212612126# operand will underflow AND underflow is enabled.1212712127-# therefore, we must return the result rounded to extended precision.1212712127+# Therefore, we must return the result rounded to extended precision.1212812128#1212912129fsqrt_sd_unfl_ena:1213012130 mov.l FP_SCR0_HI(%a6),FP_SCR1_HI(%a6)
+1-1
arch/m68k/include/asm/bootinfo.h
···145145146146 /*147147 * Macintosh hardware profile data - unused, see macintosh.h for148148- * resonable type values148148+ * reasonable type values149149 */150150151151#define BI_MAC_VIA1BASE 0x8010 /* Mac VIA1 base address (always present) */
+1-1
arch/microblaze/lib/memcpy.c
···99 * It is based on demo code originally Copyright 2001 by Intel Corp, taken from1010 * http://www.embedded.com/showArticle.jhtml?articleID=192055671111 *1212- * Attempts were made, unsuccesfully, to contact the original1212+ * Attempts were made, unsuccessfully, to contact the original1313 * author of this code (Michael Morrow, Intel). Below is the original1414 * copyright notice.1515 *
+1-1
arch/microblaze/lib/memmove.c
···99 * It is based on demo code originally Copyright 2001 by Intel Corp, taken from1010 * http://www.embedded.com/showArticle.jhtml?articleID=192055671111 *1212- * Attempts were made, unsuccesfully, to contact the original1212+ * Attempts were made, unsuccessfully, to contact the original1313 * author of this code (Michael Morrow, Intel). Below is the original1414 * copyright notice.1515 *
+1-1
arch/microblaze/lib/memset.c
···99 * It is based on demo code originally Copyright 2001 by Intel Corp, taken from1010 * http://www.embedded.com/showArticle.jhtml?articleID=192055671111 *1212- * Attempts were made, unsuccesfully, to contact the original1212+ * Attempts were made, unsuccessfully, to contact the original1313 * author of this code (Michael Morrow, Intel). Below is the original1414 * copyright notice.1515 *
+1-1
arch/mips/include/asm/mach-pnx833x/gpio.h
···24242525/* BIG FAT WARNING: races danger!2626 No protections exist here. Current users are only early init code,2727- when locking is not needed because no cuncurency yet exists there,2727+ when locking is not needed because no concurrency yet exists there,2828 and GPIO IRQ dispatcher, which does locking.2929 However, if many uses will ever happen, proper locking will be needed3030 - including locking between different uses
···13311331 if (!((asid += ASID_INC) & ASID_MASK) ) {13321332 if (cpu_has_vtag_icache)13331333 flush_icache_all();13341334- /* Traverse all online CPUs (hack requires contigous range) */13341334+ /* Traverse all online CPUs (hack requires contiguous range) */13351335 for_each_online_cpu(i) {13361336 /*13371337 * We don't need to worry about our own CPU, nor those of
+1-1
arch/mips/math-emu/dp_sub.c
···110110111111 case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM):112112 DPDNORMX;113113- /* FAAL THOROUGH */113113+ /* FALL THROUGH */114114115115 case CLPAIR(IEEE754_CLASS_NORM, IEEE754_CLASS_DNORM):116116 /* normalize ym,ye */
+1-1
arch/mips/txx9/generic/smsc_fdc37m81x.c
···117117 if (chip_id == SMSC_FDC37M81X_CHIP_ID)118118 smsc_fdc37m81x_config_end();119119 else {120120- printk(KERN_WARNING "%s: unknow chip id 0x%02x\n", __func__,120120+ printk(KERN_WARNING "%s: unknown chip id 0x%02x\n", __func__,121121 chip_id);122122 g_smsc_fdc37m81x_base = 0;123123 }
+1-1
arch/parisc/kernel/perf.c
···2424 *2525 * This driver programs the PCX-U/PCX-W performance counters2626 * on the PA-RISC 2.0 chips. The driver keeps all images now2727- * internally to the kernel to hopefully eliminate the possiblity2727+ * internally to the kernel to hopefully eliminate the possibility2828 * of a bad image halting the CPU. Also, there are different2929 * images for the PCX-W and later chips vs the PCX-U chips.3030 *
+1-1
arch/powerpc/include/asm/reg_fsl_emb.h
···3939#define PMRN_PMLCB2 0x112 /* PM Local Control B2 */4040#define PMRN_PMLCB3 0x113 /* PM Local Control B3 */41414242-#define PMLCB_THRESHMUL_MASK 0x0700 /* Threshhold Multiple Field */4242+#define PMLCB_THRESHMUL_MASK 0x0700 /* Threshold Multiple Field */4343#define PMLCB_THRESHMUL_SHIFT 844444545#define PMLCB_THRESHOLD_MASK 0x003f /* Threshold Field */
···721721722722#ifdef CONFIG_PPC64723723 /*724724- * Fill up the "systemcfg" stuff for backward compatiblity724724+ * Fill up the "systemcfg" stuff for backward compatibility725725 */726726 strcpy((char *)vdso_data->eye_catcher, "SYSTEMCFG:PPC64");727727 vdso_data->version.major = SYSTEMCFG_MAJOR;
+3-3
arch/powerpc/oprofile/op_model_cell.c
···248248 * There is no debug setup required for the cycles event.249249 * Note that only events in the same group can be used.250250 * Otherwise, there will be conflicts in correctly routing251251- * the signals on the debug bus. It is the responsiblity251251+ * the signals on the debug bus. It is the responsibility252252 * of the OProfile user tool to check the events are in253253 * the same group.254254 */···15941594 * to a latch. The new values (interrupt setting bits, reset15951595 * counter value etc.) are not copied to the actual registers15961596 * until the performance monitor is enabled. In order to get15971597- * this to work as desired, the permormance monitor needs to15971597+ * this to work as desired, the performance monitor needs to15981598 * be disabled while writing to the latches. This is a15991599 * HW design issue.16001600 */···16681668 * to a latch. The new values (interrupt setting bits, reset16691669 * counter value etc.) are not copied to the actual registers16701670 * until the performance monitor is enabled. In order to get16711671- * this to work as desired, the permormance monitor needs to16711671+ * this to work as desired, the performance monitor needs to16721672 * be disabled while writing to the latches. This is a16731673 * HW design issue.16741674 */
···302302 * 1 -> Skip the device but act as if the access was successfull303303 * (return 0xff's on reads, eventually, cache config space304304 * accesses in a later version)305305- * -1 -> Hide the device (unsuccessful acess)305305+ * -1 -> Hide the device (unsuccessful access)306306 */307307static int u3_ht_skip_device(struct pci_controller *hose,308308 struct pci_bus *bus, unsigned int devfn)
+1-1
arch/powerpc/sysdev/dart_iommu.c
···160160161161 dp = ((unsigned int*)tbl->it_base) + index;162162163163- /* On U3, all memory is contigous, so we can move this163163+ /* On U3, all memory is contiguous, so we can move this164164 * out of the loop.165165 */166166 l = npages;
+2-2
arch/s390/math-emu/math.c
···20882088 __u16 opc = *((__u16 *) opcode);2089208920902090 if ((opc & 0x90) == 0) { /* test if rx in {0,2,4,6} */20912091- /* we got an exception therfore ry can't be in {0,2,4,6} */20912091+ /* we got an exception therefore ry can't be in {0,2,4,6} */20922092 asm volatile( /* load rx from fp_regs.fprs[ry] */20932093 " bras 1,0f\n"20942094 " ld 0,0(%1)\n"···21182118 __u16 opc = *((__u16 *) opcode);2119211921202120 if ((opc & 0x90) == 0) { /* test if rx in {0,2,4,6} */21212121- /* we got an exception therfore ry can't be in {0,2,4,6} */21212121+ /* we got an exception therefore ry can't be in {0,2,4,6} */21222122 asm volatile( /* load rx from fp_regs.fprs[ry] */21232123 " bras 1,0f\n"21242124 " le 0,0(%1)\n"
+1-1
arch/sh/include/mach-common/mach/titan.h
···11/*22- * Platform defintions for Titan22+ * Platform definitions for Titan33 */44#ifndef _ASM_SH_TITAN_H55#define _ASM_SH_TITAN_H
+2-2
arch/x86/include/asm/desc_defs.h
···1212#include <linux/types.h>13131414/*1515- * FIXME: Acessing the desc_struct through its fields is more elegant,1515+ * FIXME: Accessing the desc_struct through its fields is more elegant,1616 * and should be the one valid thing to do. However, a lot of open code1717- * still touches the a and b acessors, and doing this allow us to do it1717+ * still touches the a and b accessors, and doing this allow us to do it1818 * incrementally. We keep the signature as a struct, rather than an union,1919 * so we can get rid of it transparently in the future -- glommer2020 */
+1-1
arch/x86/include/asm/mmzone_32.h
···4747/*4848 * generic node memory support, the following assumptions apply:4949 *5050- * 1) memory comes in 64Mb contigious chunks which are either present or not5050+ * 1) memory comes in 64Mb contiguous chunks which are either present or not5151 * 2) we will not have more than 64Gb in total5252 *5353 * for now assume that 64Gb is max amount of RAM for whole system
+2-2
arch/x86/include/asm/sigcontext.h
···124124 * fpstate is really (struct _fpstate *) or (struct _xstate *)125125 * depending on the FP_XSTATE_MAGIC1 encoded in the SW reserved126126 * bytes of (struct _fpstate) and FP_XSTATE_MAGIC2 present at the end127127- * of extended memory layout. See comments at the defintion of127127+ * of extended memory layout. See comments at the definition of128128 * (struct _fpx_sw_bytes)129129 */130130 void __user *fpstate; /* zero when no FPU/extended context */···219219 * fpstate is really (struct _fpstate *) or (struct _xstate *)220220 * depending on the FP_XSTATE_MAGIC1 encoded in the SW reserved221221 * bytes of (struct _fpstate) and FP_XSTATE_MAGIC2 present at the end222222- * of extended memory layout. See comments at the defintion of222222+ * of extended memory layout. See comments at the definition of223223 * (struct _fpx_sw_bytes)224224 */225225 void __user *fpstate; /* zero when no FPU/extended context */
+1-1
arch/x86/include/asm/uv/uv_bau.h
···5555#define DESC_STATUS_SOURCE_TIMEOUT 356565757/*5858- * source side threshholds at which message retries print a warning5858+ * source side thresholds at which message retries print a warning5959 */6060#define SOURCE_TIMEOUT_LIMIT 206161#define DESTINATION_TIMEOUT_LIMIT 20
+1-1
arch/x86/kernel/acpi/boot.c
···11221122 if (!acpi_sci_override_gsi)11231123 acpi_sci_ioapic_setup(acpi_gbl_FADT.sci_interrupt, 0, 0);1124112411251125- /* Fill in identity legacy mapings where no override */11251125+ /* Fill in identity legacy mappings where no override */11261126 mp_config_acpi_legacy_irqs();1127112711281128 count =
···12861286 return 0;1287128712881288 /*12891289- * If we are way outside a reasoable range then just skip forward:12891289+ * If we are way outside a reasonable range then just skip forward:12901290 */12911291 if (unlikely(left <= -period)) {12921292 left = period;
+2-2
arch/x86/kernel/kprobes.c
···481481482482/*483483 * Interrupts are disabled on entry as trap3 is an interrupt gate and they484484- * remain disabled thorough out this function.484484+ * remain disabled throughout this function.485485 */486486static int __kprobes kprobe_handler(struct pt_regs *regs)487487{···818818819819/*820820 * Interrupts are disabled on entry as trap1 is an interrupt gate and they821821- * remain disabled thoroughout this function.821821+ * remain disabled throughout this function.822822 */823823static int __kprobes post_kprobe_handler(struct pt_regs *regs)824824{
+2-2
arch/x86/mm/kmmio.c
···203203 */204204/*205205 * Interrupts are disabled on entry as trap3 is an interrupt gate206206- * and they remain disabled thorough out this function.206206+ * and they remain disabled throughout this function.207207 */208208int kmmio_handler(struct pt_regs *regs, unsigned long addr)209209{···302302303303/*304304 * Interrupts are disabled on entry as trap1 is an interrupt gate305305- * and they remain disabled thorough out this function.305305+ * and they remain disabled throughout this function.306306 * This must always get called as the pair to kmmio_handler().307307 */308308static int post_kmmio_handler(unsigned long condition, struct pt_regs *regs)
+1-1
block/blk-iopoll.c
···2828 * Description:2929 * Add this blk_iopoll structure to the pending poll list and trigger the3030 * raise of the blk iopoll softirq. The driver must already have gotten a3131- * succesful return from blk_iopoll_sched_prep() before calling this.3131+ * successful return from blk_iopoll_sched_prep() before calling this.3232 **/3333void blk_iopoll_sched(struct blk_iopoll *iop)3434{
···77 * video_detect.c:88 * Provides acpi_is_video_device() for early scanning of ACPI devices in scan.c99 * There a Linux specific (Spec does not provide a HID for video devices) is1010- * assinged1010+ * assigned1111 *1212 * After PCI devices are glued with ACPI devices1313 * acpi_get_pci_dev() can be called to identify ACPI graphics···8383 if (!device)8484 return 0;85858686- /* Does this device able to support video switching ? */8686+ /* Is this device able to support video switching ? */8787 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOD", &h_dummy)) ||8888 ACPI_SUCCESS(acpi_get_handle(device->handle, "_DOS", &h_dummy)))8989 video_caps |= ACPI_VIDEO_OUTPUT_SWITCHING;90909191- /* Does this device able to retrieve a video ROM ? */9191+ /* Is this device able to retrieve a video ROM ? */9292 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_ROM", &h_dummy)))9393 video_caps |= ACPI_VIDEO_ROM_AVAILABLE;94949595- /* Does this device able to configure which video head to be POSTed ? */9595+ /* Is this device able to configure which video head to be POSTed ? */9696 if (ACPI_SUCCESS(acpi_get_handle(device->handle, "_VPO", &h_dummy)) &&9797 ACPI_SUCCESS(acpi_get_handle(device->handle, "_GPD", &h_dummy)) &&9898 ACPI_SUCCESS(acpi_get_handle(device->handle, "_SPD", &h_dummy)))···137137 *138138 * if NULL is passed as argument all ACPI devices are enumerated and139139 * all graphics capabilities of physically present devices are140140- * summerized and returned. This is cached and done only once.140140+ * summarized and returned. This is cached and done only once.141141 */142142long acpi_video_get_capabilities(acpi_handle graphics_handle)143143{
+1-1
drivers/ata/ata_piix.c
···599599 { 0x27DF, 0x1028, 0x02b0 }, /* ICH7 on unknown Dell */600600 { 0x27DF, 0x1043, 0x1267 }, /* ICH7 on Asus W5F */601601 { 0x27DF, 0x103C, 0x30A1 }, /* ICH7 on HP Compaq nc2400 */602602- { 0x27DF, 0x103C, 0x361a }, /* ICH7 on unkown HP */602602+ { 0x27DF, 0x103C, 0x361a }, /* ICH7 on unknown HP */603603 { 0x27DF, 0x1071, 0xD221 }, /* ICH7 on Hercules EC-900 */604604 { 0x27DF, 0x152D, 0x0778 }, /* ICH7 on unknown Intel */605605 { 0x24CA, 0x1025, 0x0061 }, /* ICH4 on ACER Aspire 2023WLMi */
+3-3
drivers/ata/libata-sff.c
···736736737737 /*738738 * Use io*16_rep() accessors here as well to avoid pointlessly739739- * swapping bytes to and fro on the big endian machines...739739+ * swapping bytes to and from on the big endian machines...740740 */741741 if (rw == READ) {742742 ioread16_rep(data_addr, pad, 1);···776776 void __iomem *data_addr = ap->ioaddr.data_addr;777777 unsigned int words = buflen >> 2;778778 int slop = buflen & 3;779779-779779+780780 if (!(ap->pflags & ATA_PFLAG_PIO32))781781 return ata_sff_data_xfer(dev, buf, buflen, rw);782782···795795796796 /*797797 * Use io*_rep() accessors here as well to avoid pointlessly798798- * swapping bytes to and fro on the big endian machines...798798+ * swapping bytes to and from on the big endian machines...799799 */800800 if (rw == READ) {801801 if (slop < 3)
+1-1
drivers/ata/pata_cs5535.c
···44 * Alan Cox <alan@lxorguk.ukuu.org.uk>55 *66 * based upon cs5535.c from AMD <Jens.Altmann@amd.com> as cleaned up and77- * made readable and Linux style by Wolfgang Zuleger <wolfgang.zuleger@gmx.de77+ * made readable and Linux style by Wolfgang Zuleger <wolfgang.zuleger@gmx.de>88 * and Alexander Kiausch <alex.kiausch@t-online.de>99 *1010 * This program is free software; you can redistribute it and/or modify
+3-3
drivers/ata/sata_fsl.c
···4343 /*4444 * SATA-FSL host controller supports a max. of (15+1) direct PRDEs, and4545 * chained indirect PRDEs upto a max count of 63.4646- * We are allocating an array of 63 PRDEs contigiously, but PRDE#15 will4646+ * We are allocating an array of 63 PRDEs contiguously, but PRDE#15 will4747 * be setup as an indirect descriptor, pointing to it's next4848- * (contigious) PRDE. Though chained indirect PRDE arrays are4848+ * (contiguous) PRDE. Though chained indirect PRDE arrays are4949 * supported,it will be more efficient to use a direct PRDT and5050 * a single chain/link to indirect PRDE array/PRDT.5151 */···314314 u32 ttl_dwords = 0;315315316316 /*317317- * NOTE : direct & indirect prdt's are contigiously allocated317317+ * NOTE : direct & indirect prdt's are contiguously allocated318318 */319319 struct prde *prd = (struct prde *)&((struct command_desc *)320320 cmd_desc)->prdt;
···188188 * @dev: device to try to bind to the driver189189 *190190 * This function returns -ENODEV if the device is not registered,191191- * 1 if the device is bound sucessfully and 0 otherwise.191191+ * 1 if the device is bound successfully and 0 otherwise.192192 *193193 * This function must be called with @dev->sem held. When called for a194194 * USB interface, @dev->parent->sem must be held as well.
-3
drivers/block/ataflop.c
···14781478 stdma_lock(floppy_irq, NULL);1479147914801480 atari_disable_irq( IRQ_MFP_FDC );14811481- local_save_flags(flags); /* The request function is called with ints14821482- local_irq_disable(); * disabled... so must save the IPL for later */ 14831481 redo_fd_request();14841484- local_irq_restore(flags);14851482 atari_enable_irq( IRQ_MFP_FDC );14861483}14871484
+1-1
drivers/block/cciss_cmd.h
···55//###########################################################################66#define CISS_VERSION "1.00"7788-//general boundary defintions88+//general boundary definitions99#define SENSEINFOBYTES 32//note that this value may vary between host implementations1010#define MAXSGENTRIES 311111#define MAXREPLYQS 256
···214214 struct hci_uart *hu;215215216216 if (!hdev) {217217- BT_ERR("Frame for uknown device (hdev=NULL)");217217+ BT_ERR("Frame for unknown device (hdev=NULL)");218218 return -ENODEV;219219 }220220
+1-1
drivers/char/mem.c
···55 *66 * Added devfs support. 77 * Jan-11-1998, C. Scott Ananian <cananian@alumni.princeton.edu>88- * Shared /dev/zero mmaping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>88+ * Shared /dev/zero mmapping support, Feb 2000, Kanoj Sarcar <kanoj@sgi.com>99 */10101111#include <linux/mm.h>
+1-1
drivers/char/mspec.c
···248248/*249249 * mspec_mmap250250 *251251- * Called when mmaping the device. Initializes the vma with a fault handler251251+ * Called when mmapping the device. Initializes the vma with a fault handler252252 * and private data structure necessary to allocate, track, and free the253253 * underlying pages.254254 */
+1-1
drivers/char/n_r3964.c
···602602 }603603 break;604604 case R3964_WAIT_FOR_RX_REPEAT:605605- /* FALLTROUGH */605605+ /* FALLTHROUGH */606606 case R3964_IDLE:607607 if (c == STX) {608608 /* Prevent rx_queue from overflow: */
+1-1
drivers/char/rio/route.h
···6767typedef struct COST_ROUTE COST_ROUTE;6868struct COST_ROUTE {6969 unsigned char cost; /* Cost down this link */7070- unsigned char route[NODE_BYTES]; /* Nodes thorough this route */7070+ unsigned char route[NODE_BYTES]; /* Nodes through this route */7171};72727373typedef struct ROUTE_STR ROUTE_STR;
+1-1
drivers/char/tty_ioctl.c
···315315 * For maximal back compatibility with legacy SYS5/POSIX *nix behaviour316316 * we need to carefully set the bits when the user does not get the317317 * desired speed. We allow small margins and preserve as much of possible318318- * of the input intent to keep compatiblity.318318+ * of the input intent to keep compatibility.319319 *320320 * Locking: Caller should hold termios lock. This is already held321321 * when calling this function from the driver termios handler.
+2-2
drivers/cpuidle/governor.c
···2121 * __cpuidle_find_governor - finds a governor of the specified name2222 * @str: the name2323 *2424- * Must be called with cpuidle_lock aquired.2424+ * Must be called with cpuidle_lock acquired.2525 */2626static struct cpuidle_governor * __cpuidle_find_governor(const char *str)2727{···3939 * @gov: the new target governor4040 *4141 * NOTE: "gov" can be NULL to specify disabled4242- * Must be called with cpuidle_lock aquired.4242+ * Must be called with cpuidle_lock acquired.4343 */4444int cpuidle_switch_governor(struct cpuidle_governor *gov)4545{
+1-1
drivers/crypto/hifn_795x.c
···863863 dev->dmareg |= HIFN_DMAIER_PUBDONE;864864 hifn_write_1(dev, HIFN_1_DMA_IER, dev->dmareg);865865866866- dprintk("Chip %s: Public key engine has been sucessfully "866866+ dprintk("Chip %s: Public key engine has been successfully "867867 "initialised.\n", dev->name);868868 }869869
+1-1
drivers/dma/at_hdmac.c
···9999}100100101101/**102102- * atc_desc_get - get a unsused descriptor from free_list102102+ * atc_desc_get - get an unused descriptor from free_list103103 * @atchan: channel we want a new descriptor for104104 */105105static struct at_desc *atc_desc_get(struct at_dma_chan *atchan)
+1-1
drivers/firewire/core-topology.c
···183183 * This function builds the tree representation of the topology given184184 * by the self IDs from the latest bus reset. During the construction185185 * of the tree, the function checks that the self IDs are valid and186186- * internally consistent. On succcess this function returns the186186+ * internally consistent. On success this function returns the187187 * fw_node corresponding to the local card otherwise NULL.188188 */189189static struct fw_node *build_tree(struct fw_card *card,
+2-2
drivers/gpu/drm/drm_crtc.c
···272272 * functions & device file and adds it to the master fd list.273273 *274274 * RETURNS:275275- * Zero on success, error code on falure.275275+ * Zero on success, error code on failure.276276 */277277int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,278278 const struct drm_framebuffer_funcs *funcs)···23282328 } else if (connector->funcs->set_property)23292329 ret = connector->funcs->set_property(connector, property, out_resp->value);2330233023312331- /* store the property value if succesful */23312331+ /* store the property value if successful */23322332 if (!ret)23332333 drm_connector_property_set_value(connector, property, out_resp->value);23342334out:
+1-1
drivers/gpu/drm/i915/i915_gem.c
···13091309 * i915_gem_release_mmap - remove physical page mappings13101310 * @obj: obj in question13111311 *13121312- * Preserve the reservation of the mmaping with the DRM core code, but13121312+ * Preserve the reservation of the mmapping with the DRM core code, but13131313 * relinquish ownership of the pages back to the system.13141314 *13151315 * It is vital that we remove the page mapping if we have mapped a tiled
+1-1
drivers/gpu/drm/i915/intel_fb.c
···707071717272/**7373- * Curretly it is assumed that the old framebuffer is reused.7373+ * Currently it is assumed that the old framebuffer is reused.7474 *7575 * LOCKING7676 * caller should hold the mode config lock.
+1-1
drivers/gpu/drm/i915/intel_sdvo.c
···27262726 /* Wrap with our custom algo which switches to DDC mode */27272727 intel_output->ddc_bus->algo = &intel_sdvo_i2c_bit_algo;2728272827292729- /* In defaut case sdvo lvds is false */27292729+ /* In default case sdvo lvds is false */27302730 intel_sdvo_get_capabilities(intel_output, &sdvo_priv->caps);2731273127322732 if (intel_sdvo_output_setup(intel_output,
+8-8
drivers/gpu/drm/radeon/atombios.h
···11411141/* ucTableFormatRevision=1,ucTableContentRevision=2 */11421142typedef struct _LVDS_ENCODER_CONTROL_PARAMETERS_V2 {11431143 USHORT usPixelClock; /* in 10KHz; for bios convenient */11441144- UCHAR ucMisc; /* see PANEL_ENCODER_MISC_xx defintions below */11441144+ UCHAR ucMisc; /* see PANEL_ENCODER_MISC_xx definitions below */11451145 UCHAR ucAction; /* 0: turn off encoder */11461146 /* 1: setup and turn on encoder */11471147 UCHAR ucTruncate; /* bit0=0: Disable truncate */···14241424/* Structures used in FirmwareInfoTable */14251425/****************************************************************************/1426142614271427-/* usBIOSCapability Defintion: */14271427+/* usBIOSCapability Definition: */14281428/* Bit 0 = 0: Bios image is not Posted, =1:Bios image is Posted; */14291429/* Bit 1 = 0: Dual CRTC is not supported, =1: Dual CRTC is supported; */14301430/* Bit 2 = 0: Extended Desktop is not supported, =1: Extended Desktop is supported; */···23862386} ATOM_ANALOG_TV_INFO_V1_2;2387238723882388/**************************************************************************/23892389-/* VRAM usage and their defintions */23892389+/* VRAM usage and their definitions */2390239023912391/* One chunk of VRAM used by Bios are for HWICON surfaces,EDID data. */23922392/* Current Mode timing and Dail Timing and/or STD timing data EACH device. They can be broken down as below. */···30463046#define ATOM_S0_SYSTEM_POWER_STATE_VALUE_DC 230473047#define ATOM_S0_SYSTEM_POWER_STATE_VALUE_LITEAC 33048304830493049-/* Byte aligned defintion for BIOS usage */30493049+/* Byte aligned definition for BIOS usage */30503050#define ATOM_S0_CRT1_MONOb0 0x0130513051#define ATOM_S0_CRT1_COLORb0 0x0230523052#define ATOM_S0_CRT1_MASKb0 (ATOM_S0_CRT1_MONOb0+ATOM_S0_CRT1_COLORb0)···31313131#define ATOM_S2_DISPLAY_ROTATION_DEGREE_SHIFT 3031323132#define ATOM_S2_DISPLAY_ROTATION_ANGLE_MASK 0xC0000000L3133313331343134-/* Byte aligned defintion for BIOS usage */31343134+/* Byte aligned definition for BIOS usage */31353135#define ATOM_S2_TV1_STANDARD_MASKb0 0x0F31363136#define ATOM_S2_CURRENT_BL_LEVEL_MASKb1 0xFF31373137#define ATOM_S2_CRT1_DPMS_STATEb2 0x01···31903190#define ATOM_S3_ALLOW_FAST_PWR_SWITCH 0x40000000L31913191#define ATOM_S3_RQST_GPU_USE_MIN_PWR 0x80000000L3192319231933193-/* Byte aligned defintion for BIOS usage */31933193+/* Byte aligned definition for BIOS usage */31943194#define ATOM_S3_CRT1_ACTIVEb0 0x0131953195#define ATOM_S3_LCD1_ACTIVEb0 0x0231963196#define ATOM_S3_TV1_ACTIVEb0 0x04···32303230#define ATOM_S4_LCD1_REFRESH_MASK 0x0000FF00L32313231#define ATOM_S4_LCD1_REFRESH_SHIFT 83232323232333233-/* Byte aligned defintion for BIOS usage */32333233+/* Byte aligned definition for BIOS usage */32343234#define ATOM_S4_LCD1_PANEL_ID_MASKb0 0x0FF32353235#define ATOM_S4_LCD1_REFRESH_MASKb1 ATOM_S4_LCD1_PANEL_ID_MASKb032363236#define ATOM_S4_VRAM_INFO_MASKb2 ATOM_S4_LCD1_PANEL_ID_MASKb0···33103310#define ATOM_S6_VRI_BRIGHTNESS_CHANGE 0x40000000L33113311#define ATOM_S6_CONFIG_DISPLAY_CHANGE_MASK 0x80000000L3312331233133313-/* Byte aligned defintion for BIOS usage */33133313+/* Byte aligned definition for BIOS usage */33143314#define ATOM_S6_DEVICE_CHANGEb0 0x0133153315#define ATOM_S6_SCALER_CHANGEb0 0x0233163316#define ATOM_S6_LID_CHANGEb0 0x04
+2-2
drivers/gpu/drm/radeon/r600.c
···394394 * AGP so that GPU can catch out of VRAM/AGP access395395 */396396 if (rdev->mc.gtt_location > rdev->mc.mc_vram_size) {397397- /* Enought place before */397397+ /* Enough place before */398398 rdev->mc.vram_location = rdev->mc.gtt_location -399399 rdev->mc.mc_vram_size;400400 } else if (tmp > rdev->mc.mc_vram_size) {401401- /* Enought place after */401401+ /* Enough place after */402402 rdev->mc.vram_location = rdev->mc.gtt_location +403403 rdev->mc.gtt_size;404404 } else {
+1-1
drivers/gpu/drm/radeon/radeon_fb.c
···5959};60606161/**6262- * Curretly it is assumed that the old framebuffer is reused.6262+ * Currently it is assumed that the old framebuffer is reused.6363 *6464 * LOCKING6565 * caller should hold the mode config lock.
+1-1
drivers/gpu/drm/radeon/radeon_state.c
···19501950 * Note that refcount can be at most 2, since during a free refcount=319511951 * might mean we have to allocate a new surface which might not always19521952 * be available.19531953- * For example : we allocate three contigous surfaces ABC. If B is19531953+ * For example : we allocate three contiguous surfaces ABC. If B is19541954 * freed, we suddenly need two surfaces to store A and C, which might19551955 * not always be available.19561956 */
···829829 * AGP so that GPU can catch out of VRAM/AGP access830830 */831831 if (rdev->mc.gtt_location > rdev->mc.mc_vram_size) {832832- /* Enought place before */832832+ /* Enough place before */833833 rdev->mc.vram_location = rdev->mc.gtt_location -834834 rdev->mc.mc_vram_size;835835 } else if (tmp > rdev->mc.mc_vram_size) {836836- /* Enought place after */836836+ /* Enough place after */837837 rdev->mc.vram_location = rdev->mc.gtt_location +838838 rdev->mc.gtt_size;839839 } else {
+1-1
drivers/gpu/drm/ttm/ttm_bo_util.c
···427427428428 /*429429 * We need to use vmap to get the desired page protection430430- * or to make the buffer object look contigous.430430+ * or to make the buffer object look contiguous.431431 */432432 prot = (mem->placement & TTM_PL_FLAG_CACHED) ?433433 PAGE_KERNEL :
+1-1
drivers/hwmon/adm1029.c
···432432}433433434434/*435435-function that update the status of the chips (temperature for exemple)435435+function that update the status of the chips (temperature for example)436436*/437437static struct adm1029_data *adm1029_update_device(struct device *dev)438438{
+1-1
drivers/hwmon/lm93.c
···928928 data->prochot_interval = lm93_read_byte(client,929929 LM93_REG_PROCHOT_INTERVAL);930930931931- /* Fan Boost Termperature registers */931931+ /* Fan Boost Temperature registers */932932 for (i = 0; i < 4; i++)933933 data->boost[i] = lm93_read_byte(client, LM93_REG_BOOST(i));934934
+1-1
drivers/ieee1394/dv1394.c
···125125 0 - no debugging messages126126 1 - some debugging messages, but none during DMA frame transmission127127 2 - lots of messages, including during DMA frame transmission128128- (will cause undeflows if your machine is too slow!)128128+ (will cause underflows if your machine is too slow!)129129*/130130131131#define DV1394_DEBUG_LEVEL 0
+1-1
drivers/infiniband/hw/cxgb3/cxio_hal.c
···589589590590/* write len bytes of data into addr (32B aligned address)591591 * If data is NULL, clear len byte of memory to zero.592592- * caller aquires the ctrl_qp lock before the call592592+ * caller acquires the ctrl_qp lock before the call593593 */594594static int cxio_hal_ctrl_qp_write_mem(struct cxio_rdev *rdev_p, u32 addr,595595 u32 len, void *data)
+1-1
drivers/infiniband/hw/ipath/ipath_iba6110.c
···381381#define IPATH_GPIO_SCL \382382 (1ULL << (_IPATH_GPIO_SCL_NUM+INFINIPATH_EXTC_GPIOOE_SHIFT))383383384384-/* keep the code below somewhat more readonable; not used elsewhere */384384+/* keep the code below somewhat more readable; not used elsewhere */385385#define _IPATH_HTLINK0_CRCBITS (infinipath_hwe_htclnkabyte0crcerr | \386386 infinipath_hwe_htclnkabyte1crcerr)387387#define _IPATH_HTLINK1_CRCBITS (infinipath_hwe_htclnkbbyte0crcerr | \
+2-2
drivers/infiniband/hw/ipath/ipath_sd7220.c
···614614 * @wd: Write Data - value to set in register615615 * @mask: ones where data should be spliced into reg.616616 *617617- * Basic register read/modify/write, with un-needed acesses elided. That is,617617+ * Basic register read/modify/write, with un-needed accesses elided. That is,618618 * a mask of zero will prevent write, while a mask of 0xFF will prevent read.619619 * returns current (presumed, if a write was done) contents of selected620620 * register, or <0 if errors.···989989 /* Set DFELTHFDR/HDR thresholds */990990 RXEQ_VAL(7, 8, 0, 0, 0, 0), /* FDR */991991 RXEQ_VAL(7, 0x21, 0, 0, 0, 0), /* HDR */992992- /* Set TLTHFDR/HDR theshold */992992+ /* Set TLTHFDR/HDR threshold */993993 RXEQ_VAL(7, 9, 2, 2, 2, 2), /* FDR */994994 RXEQ_VAL(7, 0x23, 2, 2, 2, 2), /* HDR */995995 /* Set Preamp setting 2 (ZFR/ZCNT) */
+1-1
drivers/infiniband/hw/mlx4/qp.c
···352352 * anymore, so we do this only if selective signaling is off.353353 *354354 * Further, on 32-bit platforms, we can't use vmap() to make355355- * the QP buffer virtually contigious. Thus we have to use355355+ * the QP buffer virtually contiguous. Thus we have to use356356 * constant-sized WRs to make sure a WR is always fully within357357 * a single page-sized chunk.358358 *
+1-1
drivers/infiniband/ulp/iser/iser_verbs.c
···499499500500 /**501501 * starts the process of connecting to the target502502- * sleeps untill the connection is established or rejected502502+ * sleeps until the connection is established or rejected503503 */504504int iser_connect(struct iser_conn *ib_conn,505505 struct sockaddr_in *src_addr,
+1-1
drivers/input/serio/hp_sdc.c
···955955 INIT_DELAYED_WORK(&moduleloader_work, request_module_delayed);956956957957 ret = hp_sdc_init();958958- /* after sucessfull initialization give SDC some time to settle958958+ /* after successfull initialization give SDC some time to settle959959 * and then load the hp_sdc_mlc upper layer driver */960960 if (!ret)961961 schedule_delayed_work(&moduleloader_work,
+1-1
drivers/input/serio/hp_sdc_mlc.c
···125125 break;126126127127 default:128128- printk(KERN_WARNING PREFIX "Unkown HIL Error status (%x)!\n", data);128128+ printk(KERN_WARNING PREFIX "Unknown HIL Error status (%x)!\n", data);129129 break;130130 }131131
+1-1
drivers/input/touchscreen/atmel-wm97xx.c
···5959#define ATMEL_WM97XX_AC97C_IRQ (29)6060#define ATMEL_WM97XX_GPIO_DEFAULT (32+16) /* Pin 16 on port B. */6161#else6262-#error Unkown CPU, this driver only supports AT32AP700X CPUs.6262+#error Unknown CPU, this driver only supports AT32AP700X CPUs.6363#endif64646565struct continuous {
+2-2
drivers/input/touchscreen/mainstone-wm97xx.c
···1414 *1515 * Notes:1616 * This is a wm97xx extended touch driver to capture touch1717- * data in a continuous manner on the Intel XScale archictecture1717+ * data in a continuous manner on the Intel XScale architecture1818 *1919 * Features:2020 * - codecs supported:- WM9705, WM9712, WM9713···131131 /* When the AC97 queue has been drained we need to allow time132132 * to buffer up samples otherwise we end up spinning polling133133 * for samples. The controller can't have a suitably low134134- * threashold set to use the notifications it gives.134134+ * threshold set to use the notifications it gives.135135 */136136 schedule_timeout_uninterruptible(1);137137
+1-1
drivers/input/touchscreen/zylonite-wm97xx.c
···9696 /* When the AC97 queue has been drained we need to allow time9797 * to buffer up samples otherwise we end up spinning polling9898 * for samples. The controller can't have a suitably low9999- * threashold set to use the notifications it gives.9999+ * threshold set to use the notifications it gives.100100 */101101 msleep(1);102102
-4
drivers/isdn/act2000/Kconfig
···11-#22-# Config.in for IBM Active 2000 ISDN driver33-#41config ISDN_DRV_ACT200052 tristate "IBM Active 2000 support"63 depends on ISA···710 into the card using a utility which is part of the latest811 isdn4k-utils package. Please read the file912 <file:Documentation/isdn/README.act2000> for more information.1010-
-4
drivers/isdn/capi/Kconfig
···11-#22-# Config.in for the CAPI subsystem33-#41config ISDN_DRV_AVMB1_VERBOSE_REASON52 bool "Verbose reason code reporting"63 default y···5659 the legacy isdn4linux link layer. If you have a card which is5760 supported by a CAPI driver, but still want to use old features like5861 ippp interfaces or ttyI emulation, say Y/M here.5959-
+1-1
drivers/isdn/capi/capidrv.c
···830830 case 0: break;831831 case 1: s = "unknown class"; break;832832 case 2: s = "unknown function"; break;833833- default: s = "unkown error"; break;833833+ default: s = "unknown error"; break;834834 }835835 if (s)836836 printk(KERN_INFO "capidrv-%d: %s from controller 0x%x function %d: %s\n",
+1-1
drivers/isdn/hardware/eicon/di.c
···806806 DELIVERY - indication entered isdn_rc function807807 RNR=... - application had returned RNR=... after the808808 look ahead callback809809- RNum=0 - aplication had not returned any buffer to copy809809+ RNum=0 - application had not returned any buffer to copy810810 this indication and will copy it self811811 COMPLETE - XDI had copied the data to the buffers provided812812 bu the application and is about to issue the
+2-2
drivers/isdn/hardware/eicon/maintidi.c
···385385 }386386 break;387387 default:388388- diva_mnt_internal_dprintf (0, DLI_ERR, "Unknon IDI Ind (DMA mode): %02x", Ind);388388+ diva_mnt_internal_dprintf (0, DLI_ERR, "Unknown IDI Ind (DMA mode): %02x", Ind);389389 }390390 p += (this_ind_length+1);391391 total_length -= (4 + this_ind_length);···420420 }421421 break;422422 default:423423- diva_mnt_internal_dprintf (0, DLI_ERR, "Unknon IDI Ind: %02x", Ind);423423+ diva_mnt_internal_dprintf (0, DLI_ERR, "Unknown IDI Ind: %02x", Ind);424424 }425425 }426426 }
+1-1
drivers/isdn/hardware/mISDN/hfcsusb.c
···721721 switch (protocol) {722722 case (-1): /* used for init */723723 bch->state = -1;724724- /* fall trough */724724+ /* fall through */725725 case (ISDN_P_NONE):726726 if (bch->state == ISDN_P_NONE)727727 return 0; /* already in idle state */
+1-1
drivers/isdn/hardware/mISDN/hfcsusb.h
···150150 for (i = 0; list[i].name != NULL; i++)151151 if (list[i].num == num)152152 return list[i].name;153153- return "<unkown USB Error>";153153+ return "<unknown USB Error>";154154}155155156156/* USB descriptor need to contain one of the following EndPoint combination: */
···11-#22-# Config.in for HYSDN ISDN driver33-#41config HYSDN52 tristate "Hypercope HYSDN cards (Champ, Ergo, Metro) support (module only)"63 depends on m && PROC_FS && PCI···1215 depends on HYSDN && ISDN_CAPI1316 help1417 Say Y here if you like to use Hypercope's CAPI 2.0 interface.1515-
···836836 unsigned short hl;837837 struct sk_buff *skb;838838 /*839839- * we need to reserve enought space in front of839839+ * we need to reserve enough space in front of840840 * sk_buff. old call to dev_alloc_skb only reserved841841 * 16 bytes, now we are looking what the driver want842842 */···13261326 struct sk_buff *new_skb;13271327 unsigned short hl;13281328 /*13291329- * we need to reserve enought space in front of13291329+ * we need to reserve enough space in front of13301330 * sk_buff. old call to dev_alloc_skb only reserved13311331 * 16 bytes, now we are looking what the driver want.13321332 */···16741674 * - insert new fragment into the proper sequence slot (once that's done16751675 * newfrag will be set to NULL)16761676 * - reassemble any complete fragment sequence (non-null 'start'16771677- * indicates there is a continguous sequence present)16771677+ * indicates there is a contiguous sequence present)16781678 * - discard any incomplete sequences that are below minseq -- due16791679 * to the fact that sender always increment sequence number, if there16801680 * is an incomplete sequence below minseq, no new fragments would
···11-#22-# Config.in for ICN ISDN driver33-#41config ISDN_DRV_ICN52 tristate "ICN 2B and 4B support"63 depends on ISA···1013 separately. See <file:Documentation/isdn/README> and1114 <file:Documentation/isdn/README.icn> for more1215 information.1313-
+1-1
drivers/isdn/mISDN/dsp_core.c
···110110 * crossconnections and conferences via software if not possible through111111 * hardware. If hardware capability is available, hardware is used.112112 *113113- * Echo: Is generated by CMX and is used to check performane of hard and113113+ * Echo: Is generated by CMX and is used to check performance of hard and114114 * software CMX.115115 *116116 * The CMX has special functions for conferences with one, two and more
+1-1
drivers/isdn/mISDN/tei.c
···725725 if (tm->rcnt == 1) {726726 if (*debug & DEBUG_L2_TEI)727727 tm->tei_m.printdebug(fi,728728- "check req for tei %d sucessful\n", tm->l2->tei);728728+ "check req for tei %d successful\n", tm->l2->tei);729729 mISDN_FsmChangeState(fi, ST_TEI_NOP);730730 } else if (tm->rcnt > 1) {731731 /* duplicate assignment; remove */
-4
drivers/isdn/pcbit/Kconfig
···11-#22-# Config.in for PCBIT ISDN driver33-#41config ISDN_DRV_PCBIT52 tristate "PCBIT-D support"63 depends on ISA && (BROKEN || X86)···811 the card using a utility which is distributed separately. See912 <file:Documentation/isdn/README> and1013 <file:Documentation/isdn/README.pcbit> for more information.1111-
-4
drivers/isdn/sc/Kconfig
···11-#22-# Config.in for Spellcaster ISDN driver33-#41config ISDN_DRV_SC52 tristate "Spellcaster support"63 depends on ISA···69 driver currently builds only in a modularized version.710 To build it, choose M here: the module will be called sc.811 See <file:Documentation/isdn/README.sc> for more information.99-
+1-1
drivers/macintosh/therm_windtunnel.c
···1515 *1616 * WARNING: This driver has only been testen on Apple's1717 * 1.25 MHz Dual G4 (March 03). It is tuned for a CPU1818- * temperatur around 57 C.1818+ * temperature around 57 C.1919 *2020 * Copyright (C) 2003, 2004 Samuel Rydh (samuel@ibrium.se)2121 *
+1-1
drivers/md/dm-crypt.c
···988988 goto bad_cipher;989989 }990990991991- /* Compatiblity mode for old dm-crypt cipher strings */991991+ /* Compatibility mode for old dm-crypt cipher strings */992992 if (!chainmode || (strcmp(chainmode, "plain") == 0 && !ivmode)) {993993 chainmode = "cbc";994994 ivmode = "plain";
+1-1
drivers/media/common/saa7146_i2c.c
···98989999 op_count++;100100101101- /* loop throgh all bytes of message i */101101+ /* loop through all bytes of message i */102102 for(j = 0; j < m[i].len; j++) {103103 /* write back all bytes that could have been read */104104 m[i].buf[j] = (le32_to_cpu(op[op_count/3]) >> ((3-(op_count%3))*8));
+1-1
drivers/media/dvb/dvb-core/dvb_frontend.h
···160160 * search callback possible return status161161 *162162 * DVBFE_ALGO_SEARCH_SUCCESS163163- * The frontend search algorithm completed and returned succesfully163163+ * The frontend search algorithm completed and returned successfully164164 *165165 * DVBFE_ALGO_SEARCH_ASLEEP166166 * The frontend search algorithm is sleeping
···242242 { &dibusb_dib3000mb_table[9], &dibusb_dib3000mb_table[11], NULL },243243 { &dibusb_dib3000mb_table[10], &dibusb_dib3000mb_table[12], NULL },244244 },245245- { "Unkown USB1.1 DVB-T device ???? please report the name to the author",245245+ { "Unknown USB1.1 DVB-T device ???? please report the name to the author",246246 { &dibusb_dib3000mb_table[13], NULL },247247 { &dibusb_dib3000mb_table[14], NULL },248248 },
+1-1
drivers/media/dvb/dvb-usb/dvb-usb-remote.c
···259259 *state = REMOTE_KEY_REPEAT;260260 break;261261 default:262262- deb_err("unkown type of remote status: %d\n",keybuf[0]);262262+ deb_err("unknown type of remote status: %d\n",keybuf[0]);263263 break;264264 }265265 return 0;
+2-2
drivers/media/dvb/dvb-usb/usb-urb.c
···5656 stream->complete(stream, b, urb->actual_length);5757 break;5858 default:5959- err("unkown endpoint type in completition handler.");5959+ err("unknown endpoint type in completition handler.");6060 return;6161 }6262 usb_submit_urb(urb,GFP_ATOMIC);···228228 case USB_ISOC:229229 return usb_isoc_urb_init(stream);230230 default:231231- err("unkown URB-type for data transfer.");231231+ err("unknown URB-type for data transfer.");232232 return -EINVAL;233233 }234234}
+1-1
drivers/media/dvb/frontends/au8522_decoder.c
···315315 if (input_mode == AU8522_INPUT_CONTROL_REG081H_SVIDEO_CH13 ||316316 input_mode == AU8522_INPUT_CONTROL_REG081H_SVIDEO_CH24) {317317 /* Despite what the table says, for the HVR-950q we still need318318- to be in CVBS mode for the S-Video input (reason uknown). */318318+ to be in CVBS mode for the S-Video input (reason unknown). */319319 /* filter_coef_type = 3; */320320 filter_coef_type = 5;321321 } else {
+2-2
drivers/media/dvb/frontends/cx24110.c
···11- /*11+/*22 cx24110 - Single Chip Satellite Channel Receiver driver module3344 Copyright (C) 2002 Peter Hettkamp <peter.hettkamp@htp-tel.de> based on···9696 {0x42,0x00}, /* @ middle bytes " */9797 {0x43,0x00}, /* @ LSB " */9898 /* leave the carrier tracking loop parameters on default */9999- /* leave the bit timing loop parameters at gefault */9999+ /* leave the bit timing loop parameters at default */100100 {0x56,0x4d}, /* set the filtune voltage to 2.7V, as recommended by */101101 /* the cx24108 data sheet for symbol rates above 15MS/s */102102 {0x57,0x00}, /* @ Filter sigma delta enabled, positive */
···8181#include "drx397xD_fw.h"8282};83838484-/* use only with writer lock aquired */8484+/* use only with writer lock acquired */8585static void _drx_release_fw(struct drx397xD_state *s, enum fw_ix ix)8686{8787 memset(&fw[ix].data[0], 0, sizeof(fw[0].data));
+2-2
drivers/media/dvb/frontends/lgdt330x.c
···479479 switch (state->current_modulation) {480480 case QAM_256:481481 case QAM_64:482482- /* Need to undestand why there are 3 lock levels here */482482+ /* Need to understand why there are 3 lock levels here */483483 if ((buf[0] & 0x07) == 0x07)484484 *status |= FE_HAS_CARRIER;485485 break;···520520 switch (state->current_modulation) {521521 case QAM_256:522522 case QAM_64:523523- /* Need to undestand why there are 3 lock levels here */523523+ /* Need to understand why there are 3 lock levels here */524524 if ((buf[0] & 0x07) == 0x07)525525 *status |= FE_HAS_CARRIER;526526 else
+1-1
drivers/media/dvb/frontends/stb0899_drv.c
···15711571 * stb0899_track15721572 * periodically check the signal level against a specified15731573 * threshold level and perform derotator centering.15741574- * called once we have a lock from a succesful search15741574+ * called once we have a lock from a successful search15751575 * event.15761576 *15771577 * Will be called periodically called to maintain the
+2-2
drivers/media/dvb/ttpci/av7110.c
···24252425 * use 0x15 to track VPE interrupts - increase by 1 every vpeirq() is called24262426 */24272427 saa7146_write(dev, EC1SSR, (0x03<<2) | 3 );24282428- /* set event counter 1 treshold to maximum allowed value (rEC p55) */24282428+ /* set event counter 1 threshold to maximum allowed value (rEC p55) */24292429 saa7146_write(dev, ECT1R, 0x3fff );24302430#endif24312431 /* Set RPS1 Address register to point to RPS code (r108 p42) */···25592559 * use 0x15 to track VPE interrupts - increase by 1 every vpeirq() is called25602560 */25612561 saa7146_write(dev, EC1SSR, (0x03<<2) | 3 );25622562- /* set event counter 1 treshold to maximum allowed value (rEC p55) */25622562+ /* set event counter 1 threshold to maximum allowed value (rEC p55) */25632563 saa7146_write(dev, ECT1R, 0x3fff );25642564#endif25652565 /* Setup BUDGETPATCH MAIN RPS1 "program" (p35) */
+1-1
drivers/media/dvb/ttpci/budget-patch.c
···456456 // use 0x03 to track RPS1 interrupts - increase by 1 every gpio3 is toggled457457 // use 0x15 to track VPE interrupts - increase by 1 every vpeirq() is called458458 saa7146_write(dev, EC1SSR, (0x03<<2) | 3 );459459- // set event counter 1 treshold to maximum allowed value (rEC p55)459459+ // set event counter 1 threshold to maximum allowed value (rEC p55)460460 saa7146_write(dev, ECT1R, 0x3fff );461461#endif462462 // Fix VSYNC level
+1-1
drivers/media/radio/radio-mr800.c
···2828 * http://av-usbradio.sourceforge.net/index.php2929 * http://sourceforge.net/projects/av-usbradio/3030 * Latest release of theirs project was in 2005.3131- * Probably, this driver could be improved trough using their3131+ * Probably, this driver could be improved through using their3232 * achievements (specifications given).3333 * Also, Faidon Liambotis <paravoid@debian.org> wrote nice driver for this radio3434 * in 2007. He allowed to use his driver to improve current mr800 radio driver.
+1-1
drivers/media/video/cx18/cx18-av-core.h
···294294#define CXADEC_QAM_CONST_DEC 0x924295295#define CXADEC_QAM_ROTATOR_FREQ 0x948296296297297-/* Bit defintions / settings used in Mako Audio */297297+/* Bit definitions / settings used in Mako Audio */298298#define CXADEC_PREF_MODE_MONO_LANGA 0299299#define CXADEC_PREF_MODE_MONO_LANGB 1300300#define CXADEC_PREF_MODE_MONO_LANGC 2
···4141/*4242 * This structure is used by CPU to provide completed buffers information4343 * Its structure is dictrated by the layout of the SCB, required by the4444- * firmware, but its defintion needs to be here, instead of in cx18-scb.h,4444+ * firmware, but its definition needs to be here, instead of in cx18-scb.h,4545 * for mailbox work order scheduling4646 */4747struct cx18_mdl_ack {
+5-3
drivers/media/video/cx231xx/cx231xx-avcore.c
···24142414 cx231xx_info("No ACK after %d msec -GPIO I2C failed!",24152415 nInit * 10);2416241624172417- /* readAck24182418- throuth clock stretch ,slave has given a SCL signal,24192419- so the SDA data can be directly read. */24172417+ /*24182418+ * readAck24192419+ * through clock stretch, slave has given a SCL signal,24202420+ * so the SDA data can be directly read.24212421+ */24202422 status = cx231xx_get_gpio_bit(dev, dev->gpio_dir, (u8 *)&dev->gpio_val);2421242324222424 if ((dev->gpio_val & 1 << dev->board.tuner_sda_gpio) == 0) {
+2-2
drivers/media/video/cx23885/cx23885-core.c
···19571957 .resume = NULL,19581958};1959195919601960-static int cx23885_init(void)19601960+static int __init cx23885_init(void)19611961{19621962 printk(KERN_INFO "cx23885 driver version %d.%d.%d loaded\n",19631963 (CX23885_VERSION_CODE >> 16) & 0xff,···19701970 return pci_register_driver(&cx23885_pci_driver);19711971}1972197219731973-static void cx23885_fini(void)19731973+static void __exit cx23885_fini(void)19741974{19751975 pci_unregister_driver(&cx23885_pci_driver);19761976}
+1-1
drivers/media/video/cx23885/cx23885-dvb.c
···940940 int err, i;941941942942 /* Here we need to allocate the correct number of frontends,943943- * as reflected in the cards struct. The reality is that currrently943943+ * as reflected in the cards struct. The reality is that currently944944 * no cx23885 boards support this - yet. But, if we don't modify this945945 * code then the second frontend would never be allocated (later)946946 * and fail with error before the attach in dvb_register().
···285285286286 if ((ccdcparam->med_filt_thres < 0) ||287287 (ccdcparam->med_filt_thres > CCDC_MED_FILT_THRESH)) {288288- dev_dbg(dev, "Invalid value of median filter thresold\n");288288+ dev_dbg(dev, "Invalid value of median filter threshold\n");289289 return -EINVAL;290290 }291291···959959 },960960};961961962962-static int dm355_ccdc_init(void)962962+static int __init dm355_ccdc_init(void)963963{964964 printk(KERN_NOTICE "dm355_ccdc_init\n");965965 if (vpfe_register_ccdc_device(&ccdc_hw_dev) < 0)···969969 return 0;970970}971971972972-static void dm355_ccdc_exit(void)972972+static void __exit dm355_ccdc_exit(void)973973{974974 vpfe_unregister_ccdc_device(&ccdc_hw_dev);975975}
+2-2
drivers/media/video/davinci/dm644x_ccdc.c
···859859 },860860};861861862862-static int dm644x_ccdc_init(void)862862+static int __init dm644x_ccdc_init(void)863863{864864 printk(KERN_NOTICE "dm644x_ccdc_init\n");865865 if (vpfe_register_ccdc_device(&ccdc_hw_dev) < 0)···869869 return 0;870870}871871872872-static void dm644x_ccdc_exit(void)872872+static void __exit dm644x_ccdc_exit(void)873873{874874 vpfe_unregister_ccdc_device(&ccdc_hw_dev);875875}
+1-1
drivers/media/video/davinci/vpss.c
···5353 int (*enable_clock)(enum vpss_clock_sel clock_sel, int en);5454 /* select input to ccdc */5555 void (*select_ccdc_source)(enum vpss_ccdc_source_sel src_sel);5656- /* clear wbl overlflow bit */5656+ /* clear wbl overflow bit */5757 int (*clear_wbl_overflow)(enum vpss_wbl_sel wbl_sel);5858};5959
+1-1
drivers/media/video/gspca/sonixb.c
···304304};305305static const __u8 ov6650_sensor_init[][8] =306306{307307- /* Bright, contrast, etc are set througth SCBB interface.307307+ /* Bright, contrast, etc are set through SCBB interface.308308 * AVCAP on win2 do not send any data on this controls. */309309 /* Anyway, some registers appears to alter bright and constrat */310310
+1-1
drivers/media/video/gspca/spca500.c
···589589 int err;590590 __u8 Data;591591592592- /* some unknow command from Aiptek pocket dv and family300 */592592+ /* some unknown command from Aiptek pocket dv and family300 */593593594594 reg_w(gspca_dev, 0x00, 0x0d01, 0x01);595595 reg_w(gspca_dev, 0x00, 0x0d03, 0x00);
+3-3
drivers/media/video/gspca/spca501.c
···16361636 {}16371637};1638163816391639-/* Unknow camera from Ori Usbid 0x0000:0x0000 */16391639+/* Unknown camera from Ori Usbid 0x0000:0x0000 */16401640/* Based on snoops from Ori Cohen */16411641static const __u16 spca501c_mysterious_open_data[][3] = {16421642 {0x02, 0x000f, 0x0005},···19451945 goto error;19461946 break;19471947 case MystFromOriUnknownCamera:19481948- /* UnKnow Ori CMOS Camera data */19481948+ /* Unknown Ori CMOS Camera data */19491949 if (write_vector(gspca_dev, spca501c_mysterious_open_data))19501950 goto error;19511951 break;···19781978 write_vector(gspca_dev, spca501c_arowana_open_data);19791979 break;19801980 case MystFromOriUnknownCamera:19811981- /* UnKnow CMOS Camera data */19811981+ /* Unknown CMOS Camera data */19821982 write_vector(gspca_dev, spca501c_mysterious_init_data);19831983 break;19841984 default:
+1-1
drivers/media/video/gspca/sunplus.c
···631631 count = 200;632632 while (--count > 0) {633633 msleep(10);634634- /* gsmart mini2 write a each wait setting 1 ms is enought */634634+ /* gsmart mini2 write a each wait setting 1 ms is enough */635635/* reg_w_riv(dev, req, idx, val); */636636 status = reg_r_12(gspca_dev, 0x01, 0x0001, 1);637637 if (status == endcode) {
···247247248248/* COM5 */249249#define AFR_ON_OFF 0x80 /* Auto frame rate control ON/OFF selection */250250-#define AFR_SPPED 0x40 /* Auto frame rate control speed slection */250250+#define AFR_SPPED 0x40 /* Auto frame rate control speed selection */251251 /* Auto frame rate max rate control */252252#define AFR_NO_RATE 0x00 /* No reduction of frame rate */253253#define AFR_1p2 0x10 /* Max reduction to 1/2 frame rate */
···332332333333 /* Bit mask of PVR2_CVAL_INPUT choices which are valid for the hardware */334334 unsigned int input_avail_mask;335335- /* Bit mask of PVR2_CVAL_INPUT choices which are currenly allowed */335335+ /* Bit mask of PVR2_CVAL_INPUT choices which are currently allowed */336336 unsigned int input_allowed_mask;337337338338 /* Location of eeprom or a negative number if none */
···106106 unsigned long jpeg_markers; /* Which markers should go into the JPEG output.107107 * Unless you exactly know what you do, leave them untouched.108108 * Inluding less markers will make the resulting code109109- * smaller, but there will be fewer aplications109109+ * smaller, but there will be fewer applications110110 * which can read it.111111 * The presence of the APP and COM marker is112112 * influenced by APP0_len and COM_len ONLY! */
+1-1
drivers/message/i2o/i2o_block.c
···940940 * Allocate memory for the i2o_block_device struct, gendisk and request941941 * queue and initialize them as far as no additional information is needed.942942 *943943- * Returns a pointer to the allocated I2O Block device on succes or a943943+ * Returns a pointer to the allocated I2O Block device on success or a944944 * negative error code on failure.945945 */946946static struct i2o_block_device *i2o_block_device_alloc(void)
+2-2
drivers/message/i2o/iop.c
···132132 * Removes a previously added pointer from the context list and returns133133 * the matching context id.134134 *135135- * Returns context id on succes or 0 on failure.135135+ * Returns context id on success or 0 on failure.136136 */137137u32 i2o_cntxt_list_remove(struct i2o_controller * c, void *ptr)138138{···198198 * @c: controller to which the context list belong199199 * @ptr: pointer to which the context id should be fetched200200 *201201- * Returns context id which matches to the pointer on succes or 0 on201201+ * Returns context id which matches to the pointer on success or 0 on202202 * failure.203203 */204204u32 i2o_cntxt_list_get_ptr(struct i2o_controller * c, void *ptr)
+1-1
drivers/misc/sgi-gru/grufile.c
···9292/*9393 * gru_file_mmap9494 *9595- * Called when mmaping the device. Initializes the vma with a fault handler9595+ * Called when mmapping the device. Initializes the vma with a fault handler9696 * and private data structure necessary to allocate, track, and free the9797 * underlying pages.9898 */
+21-19
drivers/mmc/card/sdio_uart.c
···231231 return ret;232232}233233234234-static void sdio_uart_write_mctrl(struct sdio_uart_port *port, unsigned int mctrl)234234+static void sdio_uart_write_mctrl(struct sdio_uart_port *port,235235+ unsigned int mctrl)235236{236237 unsigned char mcr = 0;237238···388387 sdio_out(port, UART_IER, port->ier);389388}390389391391-static void sdio_uart_receive_chars(struct sdio_uart_port *port, unsigned int *status)390390+static void sdio_uart_receive_chars(struct sdio_uart_port *port,391391+ unsigned int *status)392392{393393 struct tty_struct *tty = port->tty;394394 unsigned int ch, flag;···401399 port->icount.rx++;402400403401 if (unlikely(*status & (UART_LSR_BI | UART_LSR_PE |404404- UART_LSR_FE | UART_LSR_OE))) {402402+ UART_LSR_FE | UART_LSR_OE))) {405403 /*406404 * For statistics only407405 */···419417 * Mask off conditions which should be ignored.420418 */421419 *status &= port->read_status_mask;422422- if (*status & UART_LSR_BI) {420420+ if (*status & UART_LSR_BI)423421 flag = TTY_BREAK;424424- } else if (*status & UART_LSR_PE)422422+ else if (*status & UART_LSR_PE)425423 flag = TTY_PARITY;426424 else if (*status & UART_LSR_FE)427425 flag = TTY_FRAME;···576574 */577575 sdio_out(port, UART_FCR, UART_FCR_ENABLE_FIFO);578576 sdio_out(port, UART_FCR, UART_FCR_ENABLE_FIFO |579579- UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);577577+ UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT);580578 sdio_out(port, UART_FCR, 0);581579582580 /*···637635 if (port->tty->termios->c_cflag & HUPCL)638636 sdio_uart_clear_mctrl(port, TIOCM_DTR | TIOCM_RTS);639637640640- /* Disable interrupts from this port */638638+ /* Disable interrupts from this port */641639 sdio_release_irq(port->func);642640 port->ier = 0;643641 sdio_out(port, UART_IER, 0);···661659 free_page((unsigned long)port->xmit.buf);662660}663661664664-static int sdio_uart_open (struct tty_struct *tty, struct file * filp)662662+static int sdio_uart_open(struct tty_struct *tty, struct file *filp)665663{666664 struct sdio_uart_port *port;667665 int ret;···848846 struct sdio_uart_port *port = tty->driver_data;849847 unsigned int cflag = tty->termios->c_cflag;850848851851-#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))849849+#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))852850853851 if ((cflag ^ old_termios->c_cflag) == 0 &&854852 RELEVANT_IFLAG(tty->termios->c_iflag ^ old_termios->c_iflag) == 0)···927925 struct sdio_uart_port *port = tty->driver_data;928926 int result;929927930930- result =sdio_uart_claim_func(port);928928+ result = sdio_uart_claim_func(port);931929 if(!result) {932930 sdio_uart_update_mctrl(port, set, clear);933931 sdio_uart_release_func(port);···948946 seq_printf(m, "%d: uart:SDIO", i);949947 if(capable(CAP_SYS_ADMIN)) {950948 seq_printf(m, " tx:%d rx:%d",951951- port->icount.tx, port->icount.rx);949949+ port->icount.tx, port->icount.rx);952950 if (port->icount.frame)953951 seq_printf(m, " fe:%d",954954- port->icount.frame);952952+ port->icount.frame);955953 if (port->icount.parity)956954 seq_printf(m, " pe:%d",957957- port->icount.parity);955955+ port->icount.parity);958956 if (port->icount.brk)959957 seq_printf(m, " brk:%d",960960- port->icount.brk);958958+ port->icount.brk);961959 if (port->icount.overrun)962960 seq_printf(m, " oe:%d",963963- port->icount.overrun);961961+ port->icount.overrun);964962 if (port->icount.cts)965963 seq_printf(m, " cts:%d",966966- port->icount.cts);964964+ port->icount.cts);967965 if (port->icount.dsr)968966 seq_printf(m, " dsr:%d",969969- port->icount.dsr);967967+ port->icount.dsr);970968 if (port->icount.rng)971969 seq_printf(m, " rng:%d",972972- port->icount.rng);970970+ port->icount.rng);973971 if (port->icount.dcd)974972 seq_printf(m, " dcd:%d",975975- port->icount.dcd);973973+ port->icount.dcd);976974 }977975 sdio_uart_port_put(port);978976 seq_putc(m, '\n');
+1-1
drivers/mmc/host/s3cmci.c
···1360136013611361static struct s3c24xx_mci_pdata s3cmci_def_pdata = {13621362 /* This is currently here to avoid a number of if (host->pdata)13631363- * checks. Any zero fields to ensure reaonable defaults are picked. */13631363+ * checks. Any zero fields to ensure reasonable defaults are picked. */13641364};1365136513661366#ifdef CONFIG_CPU_FREQ
-3
drivers/mtd/chips/Kconfig
···11-# drivers/mtd/chips/Kconfig22-31menu "RAM/ROM/Flash chip drivers"42 depends on MTD!=n53···240242 then say N.241243242244endmenu243243-
-3
drivers/mtd/devices/Kconfig
···11-# drivers/mtd/maps/Kconfig22-31menu "Self-contained MTD device drivers"42 depends on MTD!=n53···306308 you have managed to wipe the first block.307309308310endmenu309309-
+1-1
drivers/mtd/devices/slram.c
···1818 to specify the offset instead of the absolute address19192020 NOTE:2121- With slram it's only possible to map a contigous memory region. Therfore2121+ With slram it's only possible to map a contiguous memory region. Therefore2222 if there's a device mapped somewhere in the region specified slram will2323 fail to load (see kernel log if modprobe fails).2424
-3
drivers/mtd/lpddr/Kconfig
···11-# drivers/mtd/chips/Kconfig22-31menu "LPDDR flash memory drivers"42 depends on MTD!=n53···1820 families of devices. This serves similar purpose of CFI on legacy1921 Flash products2022endmenu2121-
+3-5
drivers/mtd/maps/Kconfig
···11-# drivers/mtd/maps/Kconfig22-31menu "Mapping drivers for chip access"42 depends on MTD!=n53···387389 depends on MTD_CFI && MTD_COMPLEX_MAPPINGS && ARCH_IXP2000388390 help389391 This enables MTD access to flash devices on platforms based390390- on Intel's IXP2000 family of network processors such as the391391- IXDP425 and Coyote. If you have an IXP2000 based board and392392- would like to use the flash chips on it, say 'Y'.392392+ on Intel's IXP2000 family of network processors. If you have an393393+ IXP2000 based board and would like to use the flash chips on it,394394+ say 'Y'.393395394396config MTD_FORTUNET395397 tristate "CFI Flash device mapped on the FortuNet board"
-2
drivers/mtd/nand/Kconfig
···11-# drivers/mtd/nand/Kconfig22-31menuconfig MTD_NAND42 tristate "NAND Device Support"53 depends on MTD
+1-1
drivers/mtd/nand/diskonchip.c
···10561056};1057105710581058/* Find the (I)NFTL Media Header, and optionally also the mirror media header.10591059- On sucessful return, buf will contain a copy of the media header for10591059+ On successful return, buf will contain a copy of the media header for10601060 further processing. id is the string to scan for, and will presumably be10611061 either "ANAND" or "BNAND". If findmirror=1, also look for the mirror media10621062 header. The page #s of the found media headers are placed in mh0_page and
+1-1
drivers/mtd/nand/nand_ecc.c
···475475 *476476 * The b2 shift is there to get rid of the lowest two bits.477477 * We could also do addressbits[b2] >> 1 but for the478478- * performace it does not make any difference478478+ * performance it does not make any difference479479 */480480 if (eccsize_mult == 1)481481 byte_addr = (addressbits[b1] << 4) + addressbits[b0];
+1-1
drivers/mtd/nand/s3c2410.c
···875875 * @info: The controller instance.876876 * @nmtd: The driver version of the MTD instance.877877 *878878- * This routine is called after the chip probe has succesfully completed878878+ * This routine is called after the chip probe has successfully completed879879 * and the relevant per-chip information updated. This call ensure that880880 * we update the internal state accordingly.881881 *
-4
drivers/mtd/onenand/Kconfig
···11-#22-# linux/drivers/mtd/onenand/Kconfig33-#44-51menuconfig MTD_ONENAND62 tristate "OneNAND Device Support"73 depends on MTD
-2
drivers/mtd/ubi/Kconfig
···11-# drivers/mtd/ubi/Kconfig22-31menu "UBI - Unsorted block images"42 depends on MTD53
+1-1
drivers/net/82596.c
···1919 TBD:2020 * look at deferring rx frames rather than discarding (as per tulip)2121 * handle tx ring full as per tulip2222- * performace test to tune rx_copybreak2222+ * performance test to tune rx_copybreak23232424 Most of my modifications relate to the braindead big-endian2525 implementation by Intel. When the i596 is operating in
+6-1
drivers/net/amd8111e.c
···16331633 readl(lp->mmio + CMD7);16341634 return 0;16351635}16361636-/* This function is called when a packet transmission fails to complete within a resonable period, on the assumption that an interrupts have been failed or the interface is locked up. This function will reinitialize the hardware */1637163616371637+/*16381638+ * This function is called when a packet transmission fails to complete16391639+ * within a reasonable period, on the assumption that an interrupt have16401640+ * failed or the interface is locked up. This function will reinitialize16411641+ * the hardware.16421642+ */16381643static void amd8111e_tx_timeout(struct net_device *dev)16391644{16401645 struct amd8111e_priv* lp = netdev_priv(dev);
+1-1
drivers/net/appletalk/cops.c
···120120 * DAYNA driver mode:121121 * Dayna DL2000/DaynaTalk PC (Half Length), COPS LT-95, 122122 * Farallon PhoneNET PC III, Farallon PhoneNET PC II123123- * Other cards possibly supported mode unkown though:123123+ * Other cards possibly supported mode unknown though:124124 * Dayna DL2000 (Full length), COPS LT/M (Micro-Channel)125125 *126126 * Cards NOT supported by this driver but supported by the ltpc.c
···25362536/* [RC 1] A flag to indicate that overflow error occurred in one of the25372537 queues. */25382538#define QM_REG_OVFERROR 0x16805c25392539-/* [RC 7] the Q were the qverflow occurs */25392539+/* [RC 7] the Q where the overflow occurs */25402540#define QM_REG_OVFQNUM 0x16805825412541/* [R 16] Pause state for physical queues 15-0 */25422542#define QM_REG_PAUSESTATE0 0x168410
+1-1
drivers/net/bonding/bond_alb.c
···559559 }560560 }561561562562- /* do not update the entries again untill this counter is zero so that562562+ /* do not update the entries again until this counter is zero so that563563 * not to confuse the clients.564564 */565565 bond_info->rlb_update_delay_counter = RLB_UPDATE_DELAY;
+1-1
drivers/net/cxgb3/sge.c
···1285128512861286 /*12871287 * We do not use Tx completion interrupts to free DMAd Tx packets.12881288- * This is good for performamce but means that we rely on new Tx12881288+ * This is good for performance but means that we rely on new Tx12891289 * packets arriving to run the destructors of completed packets,12901290 * which open up space in their sockets' send queues. Sometimes12911291 * we do not get such new packets causing Tx to stall. A single
+2-2
drivers/net/ehea/ehea_ethtool.c
···118118 ret = ehea_set_portspeed(port, sp);119119120120 if (!ret)121121- ehea_info("%s: Port speed succesfully set: %dMbps "121121+ ehea_info("%s: Port speed successfully set: %dMbps "122122 "%s Duplex",123123 port->netdev->name, port->port_speed,124124 port->full_duplex == 1 ? "Full" : "Half");···134134 ret = ehea_set_portspeed(port, EHEA_SPEED_AUTONEG);135135136136 if (!ret)137137- ehea_info("%s: Port speed succesfully set: %dMbps "137137+ ehea_info("%s: Port speed successfully set: %dMbps "138138 "%s Duplex",139139 port->netdev->name, port->port_speed,140140 port->full_duplex == 1 ? "Full" : "Half");
+1-1
drivers/net/hamradio/baycom_ser_fdx.c
···3535 * driver only supports standard serial hardware (8250, 16450, 16550A)3636 *3737 * This modem usually draws its supply current out of the otherwise unused3838- * TXD pin of the serial port. Thus a contignuous stream of 0x00-bytes3838+ * TXD pin of the serial port. Thus a contiguous stream of 0x00-bytes3939 * is transmitted to achieve a positive supply voltage.4040 *4141 * hsk: This is a 4800 baud FSK modem, designed for TNC use. It works fine
+1-1
drivers/net/irda/smsc-ircc2.c
···115115 unsigned short vendor; /* PCI vendor ID */116116 unsigned short device; /* PCI vendor ID */117117 unsigned short subvendor; /* PCI subsystem vendor ID */118118- unsigned short subdevice; /* PCI sybsystem device ID */118118+ unsigned short subdevice; /* PCI subsystem device ID */119119 unsigned short sir_io; /* I/O port for SIR */120120 unsigned short fir_io; /* I/O port for FIR */121121 unsigned char fir_irq; /* FIR IRQ */
+1-1
drivers/net/iseries_veth.c
···13841384 unsigned long done;13851385 int i = 1;1386138613871387- /* FIXME: skbs are continguous in real addresses. Do we13871387+ /* FIXME: skbs are contiguous in real addresses. Do we13881388 * really need to break it into PAGE_SIZE chunks, or can we do13891389 * it just at the granularity of iSeries real->absolute13901390 * mapping? Indeed, given the way the allocator works, can we
+1-1
drivers/net/lasi_82596.c
···4747 TBD:4848 * look at deferring rx frames rather than discarding (as per tulip)4949 * handle tx ring full as per tulip5050- * performace test to tune rx_copybreak5050+ * performance test to tune rx_copybreak51515252 Most of my modifications relate to the braindead big-endian5353 implementation by Intel. When the i596 is operating in
+1-1
drivers/net/lib82596.c
···4747 TBD:4848 * look at deferring rx frames rather than discarding (as per tulip)4949 * handle tx ring full as per tulip5050- * performace test to tune rx_copybreak5050+ * performance test to tune rx_copybreak51515252 Most of my modifications relate to the braindead big-endian5353 implementation by Intel. When the i596 is operating in
···4747static int inline_thold __read_mostly = MAX_INLINE;48484949module_param_named(inline_thold, inline_thold, int, 0444);5050-MODULE_PARM_DESC(inline_thold, "treshold for using inline data");5050+MODULE_PARM_DESC(inline_thold, "threshold for using inline data");51515252int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,5353 struct mlx4_en_tx_ring *ring, u32 size,
+1-1
drivers/net/mlx4/mlx4_en.h
···162162#define MLX4_EN_DEF_RX_PAUSE 1163163#define MLX4_EN_DEF_TX_PAUSE 1164164165165-/* Interval between sucessive polls in the Tx routine when polling is used165165+/* Interval between successive polls in the Tx routine when polling is used166166 instead of interrupts (in per-core Tx rings) - should be power of 2 */167167#define MLX4_EN_TX_POLL_MODER 16168168#define MLX4_EN_TX_POLL_TIMEOUT (HZ / 4)
+1-1
drivers/net/ps3_gelic_net.c
···296296 * @card: card structure297297 * @descr: descriptor to re-init298298 *299299- * return 0 on succes, <0 on failure299299+ * return 0 on success, <0 on failure300300 *301301 * allocates a new rx skb, iommu-maps it and attaches it to the descriptor.302302 * Activate the descriptor state-wise
+1-1
drivers/net/ps3_gelic_wireless.h
···199199/* for 'stat' member of gelic_wl_info */200200enum gelic_wl_info_status_bit {201201 GELIC_WL_STAT_CONFIGURED,202202- GELIC_WL_STAT_CH_INFO, /* ch info aquired */202202+ GELIC_WL_STAT_CH_INFO, /* ch info acquired */203203 GELIC_WL_STAT_ESSID_SET, /* ESSID specified by userspace */204204 GELIC_WL_STAT_BSSID_SET, /* BSSID specified by userspace */205205 GELIC_WL_STAT_WPA_PSK_SET, /* PMK specified by userspace */
+1-1
drivers/net/qla3xxx.c
···36513651 ql_sem_unlock(qdev, QL_DRVR_SEM_MASK);36523652 } else {36533653 printk(KERN_ERR PFX36543654- "%s: Could not aquire driver lock.\n",36543654+ "%s: Could not acquire driver lock.\n",36553655 ndev->name);36563656 goto err_lock;36573657 }
+1-1
drivers/net/s2io.c
···3238323832393239/**32403240 * s2io_chk_xpak_counter - Function to check the status of the xpak counters32413241- * @counter : couter value to be updated32413241+ * @counter : counter value to be updated32423242 * @flag : flag to indicate the status32433243 * @type : counter type32443244 * Description:
+2-2
drivers/net/sis900.c
···17601760 sis_priv->rx_ring[entry].bufptr, RX_BUF_SIZE,17611761 PCI_DMA_FROMDEVICE);1762176217631763- /* refill the Rx buffer, what if there is not enought17631763+ /* refill the Rx buffer, what if there is not enough17641764 * memory for new socket buffer ?? */17651765 if ((skb = dev_alloc_skb(RX_BUF_SIZE)) == NULL) {17661766 /*···17751775 }1776177617771777 /* This situation should never happen, but due to17781778- some unknow bugs, it is possible that17781778+ some unknown bugs, it is possible that17791779 we are working on NULL sk_buff :-( */17801780 if (sis_priv->rx_skbuff[entry] == NULL) {17811781 if (netif_msg_rx_err(sis_priv))
···10021002 }10031003 break;10041004 default:10051005- printk("ioctl for %s: unknow cmd: %04x\n", dev->name, ioc.cmd);10051005+ printk("ioctl for %s: unknown cmd: %04x\n", dev->name, ioc.cmd);10061006 status = -EOPNOTSUPP;1007100710081008 } // switch
+1-1
drivers/net/sky2.c
···1975197519761976 netif_carrier_off(sky2->netdev);1977197719781978- /* Turn on link LED */19781978+ /* Turn off link LED */19791979 sky2_write8(hw, SK_REG(port, LNK_LED_REG), LINKLED_OFF);1980198019811981 if (netif_msg_link(sky2))
···3030#define SMSC_NAPI_WEIGHT 1631313232/* implements a PHY loopback test at initialisation time, to ensure a packet3333- * can be succesfully looped back */3333+ * can be successfully looped back */3434#define USE_PHY_WORK_AROUND35353636#define DPRINTK(nlevel, klevel, fmt, args...) \
+1-1
drivers/net/spider_net.c
···409409 * @card: card structure410410 * @descr: descriptor to re-init411411 *412412- * Return 0 on succes, <0 on failure.412412+ * Return 0 on success, <0 on failure.413413 *414414 * Allocates a new rx skb, iommu-maps it and attaches it to the415415 * descriptor. Mark the descriptor as activated, ready-to-use.
+1-1
drivers/net/stmmac/gmac.c
···112112 " (threshold = %d)\n", txmode);113113 csr6 &= ~DMA_CONTROL_TSF;114114 csr6 &= DMA_CONTROL_TC_TX_MASK;115115- /* Set the transmit threashold */115115+ /* Set the transmit threshold */116116 if (txmode <= 32)117117 csr6 |= DMA_CONTROL_TTC_32;118118 else if (txmode <= 64)
+2-2
drivers/net/stmmac/gmac.h
···154154#define DMA_CONTROL_DT 0x04000000 /* Disable Drop TCP/IP csum error */155155#define DMA_CONTROL_RSF 0x02000000 /* Receive Store and Forward */156156#define DMA_CONTROL_DFF 0x01000000 /* Disaable flushing */157157-/* Theshold for Activating the FC */157157+/* Threshold for Activating the FC */158158enum rfa {159159 act_full_minus_1 = 0x00800000,160160 act_full_minus_2 = 0x00800200,161161 act_full_minus_3 = 0x00800400,162162 act_full_minus_4 = 0x00800600,163163};164164-/* Theshold for Deactivating the FC */164164+/* Threshold for Deactivating the FC */165165enum rfd {166166 deac_full_minus_1 = 0x00400000,167167 deac_full_minus_2 = 0x00400800,
+1-1
drivers/net/tokenring/ibmtr.c
···9696 *9797 * Change by Mike Sullivan et al.:9898 * + added turbo card support. No need to use lanaid to configure9999- * the adapter into isa compatiblity mode.9999+ * the adapter into isa compatibility mode.100100 *101101 * Changes by Burt Silverman to allow the computer to behave nicely when102102 * a cable is pulled or not in place, or a PCMCIA card is removed hot.
+1-1
drivers/net/tokenring/smctr.c
···426426 smctr_malloc(dev, 1L);427427428428 /* Allocate Non-MAC receive data buffers.429429- * To guarantee a minimum of 256 contigous memory to429429+ * To guarantee a minimum of 256 contiguous memory to430430 * UM_Receive_Packet's lookahead pointer, before a page431431 * change or ring end is encountered, place each rx buffer on432432 * a 256 byte boundary.
···8080 frames) received that were between 1288181 (Including FCS length==4) and 255 octets */8282 u32 txok; /* Total number of octets residing in frames8383- that where involved in succesfull8383+ that where involved in successfull8484 transmission */8585 u16 txcf; /* Total number of PAUSE control frames8686 transmitted by this MAC */8787 u8 res4[0x2];8888 u32 tmca; /* Total number of frames that were transmitted8989- succesfully with the group address bit set8989+ successfully with the group address bit set9090 that are not broadcast frames */9191 u32 tbca; /* Total number of frames transmitted9292- succesfully that had destination address9292+ successfully that had destination address9393 field equal to the broadcast address */9494 u32 rxfok; /* Total number of frames received OK */9595 u32 rxbok; /* Total number of octets received OK */···9898 HW because it includes octets in frames that9999 never even reach the UCC */100100 u32 rmca; /* Total number of frames that were received101101- succesfully with the group address bit set101101+ successfully with the group address bit set102102 that are not broadcast frames */103103- u32 rbca; /* Total number of frames received succesfully103103+ u32 rbca; /* Total number of frames received successfully104104 that had destination address equal to the105105 broadcast address */106106 u32 scar; /* Statistics carry register */···759759 frames) received that were between 128760760 (Including FCS length==4) and 255 octets */761761 u32 txok; /* Total number of octets residing in frames762762- that where involved in succesfull762762+ that where involved in successfull763763 transmission */764764 u16 txcf; /* Total number of PAUSE control frames765765 transmitted by this MAC */766766 u32 tmca; /* Total number of frames that were transmitted767767- succesfully with the group address bit set767767+ successfully with the group address bit set768768 that are not broadcast frames */769769 u32 tbca; /* Total number of frames transmitted770770- succesfully that had destination address770770+ successfully that had destination address771771 field equal to the broadcast address */772772 u32 rxfok; /* Total number of frames received OK */773773 u32 rxbok; /* Total number of octets received OK */···776776 HW because it includes octets in frames that777777 never even reach the UCC */778778 u32 rmca; /* Total number of frames that were received779779- succesfully with the group address bit set779779+ successfully with the group address bit set780780 that are not broadcast frames */781781- u32 rbca; /* Total number of frames received succesfully781781+ u32 rbca; /* Total number of frames received successfully782782 that had destination address equal to the783783 broadcast address */784784} __attribute__ ((packed));
···182182 if (pvc->dlci == dlci)183183 return pvc;184184 if (pvc->dlci > dlci)185185- return NULL; /* the listed is sorted */185185+ return NULL; /* the list is sorted */186186 pvc = pvc->next;187187 }188188
···11141114 * device. See the file header for the format. Run all checks on the11151115 * buffer header, then run over each payload's descriptors, verify11161116 * their consistency and act on each payload's contents. If11171117- * everything is succesful, update the device's statistics.11171117+ * everything is successful, update the device's statistics.11181118 *11191119 * Note: You need to set the skb to contain only the length of the11201120 * received buffer; for that, use skb_trim(skb, RECEIVED_SIZE).
+2-2
drivers/net/wireless/ath/ath5k/base.h
···3636 */37373838/*3939- * Defintions for the Atheros Wireless LAN controller driver.3939+ * Definitions for the Atheros Wireless LAN controller driver.4040 */4141#ifndef _DEV_ATH_ATHVAR_H4242#define _DEV_ATH_ATHVAR_H···193193 struct ath5k_txq *cabq; /* content after beacon */194194195195 int power_level; /* Requested tx power in dbm */196196- bool assoc; /* assocate state */196196+ bool assoc; /* associate state */197197 bool enable_beacon; /* true if beacons are on */198198};199199
+1-1
drivers/net/wireless/ath/ath5k/eeprom.c
···14921492 * This info is used to calibrate the baseband power table. Imagine14931493 * that for each channel there is a power curve that's hw specific14941494 * (depends on amplifier etc) and we try to "correct" this curve using14951495- * offests we pass on to phy chip (baseband -> before amplifier) so that14951495+ * offsets we pass on to phy chip (baseband -> before amplifier) so that14961496 * it can use accurate power values when setting tx power (takes amplifier's14971497 * performance on each channel into account).14981498 *
+3-3
drivers/net/wireless/ath/ath5k/phy.c
···117117118118/*119119 * This code is used to optimize rf gain on different environments120120- * (temprature mostly) based on feedback from a power detector.120120+ * (temperature mostly) based on feedback from a power detector.121121 *122122 * It's only used on RF5111 and RF5112, later RF chips seem to have123123 * auto adjustment on hw -notice they have a much smaller BANK 7 and···26752675 /* Fill curves in reverse order26762676 * from lower power (max gain)26772677 * to higher power. Use curve -> idx26782678- * backmaping we did on eeprom init */26782678+ * backmapping we did on eeprom init */26792679 u8 idx = pdg_curve_to_idx[pdg];2680268026812681 /* Grab the needed curves by index */···27772777 /* Now we have a set of curves for this27782778 * channel on tmpL (x range is table_max - table_min27792779 * and y values are tmpL[pdg][]) sorted in the same27802780- * order as EEPROM (because we've used the backmaping).27802780+ * order as EEPROM (because we've used the backmapping).27812781 * So for RF5112 it's from higher power to lower power27822782 * and for RF2413 it's from lower power to higher power.27832783 * For RF5111 we only have one curve. */
+1-1
drivers/net/wireless/ath/ath9k/rc.c
···969969 * Since this probe succeeded, we allow the next970970 * probe twice as soon. This allows the maxRate971971 * to move up faster if the probes are972972- * succesful.972972+ * successful.973973 */974974 ath_rc_priv->probe_time =975975 now_msec - rate_table->probe_interval / 2;
+1-1
drivers/net/wireless/b43/main.c
···29552955/* Periodic work locking policy:29562956 * The whole periodic work handler is protected by29572957 * wl->mutex. If another lock is needed somewhere in the29582958- * pwork callchain, it's aquired in-place, where it's needed.29582958+ * pwork callchain, it's acquired in-place, where it's needed.29592959 */29602960static void b43_periodic_work_handler(struct work_struct *work)29612961{
+1-1
drivers/net/wireless/b43legacy/main.c
···22772277/* Periodic work locking policy:22782278 * The whole periodic work handler is protected by22792279 * wl->mutex. If another lock is needed somewhere in the22802280- * pwork callchain, it's aquired in-place, where it's needed.22802280+ * pwork callchain, it's acquired in-place, where it's needed.22812281 */22822282static void b43legacy_periodic_work_handler(struct work_struct *work)22832283{
+3-3
drivers/net/wireless/ipw2x00/ipw2100.c
···551551 /* get number of entries */552552 field_count = *(((u16 *) & field_info) + 1);553553554554- /* abort if no enought memory */554554+ /* abort if no enough memory */555555 total_length = field_len * field_count;556556 if (total_length > *len) {557557 *len = total_length;···30443044 IPW_MAX_BDS)) {30453045 /* TODO: Support merging buffers if more than30463046 * IPW_MAX_BDS are used */30473047- IPW_DEBUG_INFO("%s: Maximum BD theshold exceeded. "30473047+ IPW_DEBUG_INFO("%s: Maximum BD threshold exceeded. "30483048 "Increase fragmentation level.\n",30493049 priv->net_dev->name);30503050 }···68206820 range->max_qual.updated = 7; /* Updated all three */6821682168226822 range->avg_qual.qual = 70; /* > 8% missed beacons is 'bad' */68236823- /* TODO: Find real 'good' to 'bad' threshol value for RSSI */68236823+ /* TODO: Find real 'good' to 'bad' threshold value for RSSI */68246824 range->avg_qual.level = 20 + IPW2100_RSSI_TO_DBM;68256825 range->avg_qual.noise = 0;68266826 range->avg_qual.updated = 7; /* Updated all three */
+4-4
drivers/net/wireless/ipw2x00/ipw2200.c
···768768 /* get number of entries */769769 field_count = *(((u16 *) & field_info) + 1);770770771771- /* abort if not enought memory */771771+ /* abort if not enough memory */772772 total_len = field_len * field_count;773773 if (total_len > *len) {774774 *len = total_len;···77327732 case SEC_LEVEL_0:77337733 break;77347734 default:77357735- printk(KERN_ERR "Unknow security level %d\n",77357735+ printk(KERN_ERR "Unknown security level %d\n",77367736 priv->ieee->sec.level);77377737 break;77387738 }···89168916 range->max_qual.updated = 7; /* Updated all three */8917891789188918 range->avg_qual.qual = 70;89198919- /* TODO: Find real 'good' to 'bad' threshol value for RSSI */89198919+ /* TODO: Find real 'good' to 'bad' threshold value for RSSI */89208920 range->avg_qual.level = 0; /* FIXME to real average level */89218921 range->avg_qual.noise = 0;89228922 range->avg_qual.updated = 7; /* Updated all three */···1028910289 case SEC_LEVEL_0:1029010290 break;1029110291 default:1029210292- printk(KERN_ERR "Unknow security level %d\n",1029210292+ printk(KERN_ERR "Unknown security level %d\n",1029310293 priv->ieee->sec.level);1029410294 break;1029510295 }
+1-1
drivers/net/wireless/ipw2x00/libipw_module.c
···175175 ieee->host_decrypt = 1;176176 ieee->host_mc_decrypt = 1;177177178178- /* Host fragementation in Open mode. Default is enabled.178178+ /* Host fragmentation in Open mode. Default is enabled.179179 * Note: host fragmentation is always enabled if host encryption180180 * is enabled. For cards can do hardware encryption, they must do181181 * hardware fragmentation as well. So we don't need a variable
+1-1
drivers/net/wireless/iwmc3200wifi/hal.c
···411411/*412412 * iwm_hal_send_host_cmd(): sends commands to the UMAC or the LMAC.413413 * Sending command to the LMAC is equivalent to sending a414414- * regular UMAC command with the LMAC passtrough or the LMAC414414+ * regular UMAC command with the LMAC passthrough or the LMAC415415 * wrapper UMAC command IDs.416416 */417417int iwm_hal_send_host_cmd(struct iwm_priv *iwm,
···934934 }935935936936 if (i == ARRAY_SIZE(if_sdio_models)) {937937- lbs_pr_err("unkown card model 0x%x\n", card->model);937937+ lbs_pr_err("unknown card model 0x%x\n", card->model);938938 ret = -ENODEV;939939 goto free;940940 }
···18971897 return 0;18981898}1899189919001900-/* Setting policy also clears the MAC acl, even if we don't change the defaut19001900+/* Setting policy also clears the MAC acl, even if we don't change the default19011901 * policy19021902 */19031903···2323232323242324 case DOT11_OID_BEACON:23252325 send_formatted_event(priv,23262326- "Received a beacon from an unkown AP",23262326+ "Received a beacon from an unknown AP",23272327 mlme, 0);23282328 break;23292329
+1-1
drivers/net/wireless/rt2x00/rt2400pci.h
···35353636/*3737 * Signal information.3838- * Defaul offset is required for RSSI <-> dBm conversion.3838+ * Default offset is required for RSSI <-> dBm conversion.3939 */4040#define DEFAULT_RSSI_OFFSET 1004141
+1-1
drivers/net/wireless/rt2x00/rt2500pci.h
···46464747/*4848 * Signal information.4949- * Defaul offset is required for RSSI <-> dBm conversion.4949+ * Default offset is required for RSSI <-> dBm conversion.5050 */5151#define DEFAULT_RSSI_OFFSET 1215252
+1-1
drivers/net/wireless/rt2x00/rt2500usb.h
···46464747/*4848 * Signal information.4949- * Defaul offset is required for RSSI <-> dBm conversion.4949+ * Default offset is required for RSSI <-> dBm conversion.5050 */5151#define DEFAULT_RSSI_OFFSET 1205252
+1-1
drivers/net/wireless/rt2x00/rt61pci.h
···37373838/*3939 * Signal information.4040- * Defaul offset is required for RSSI <-> dBm conversion.4040+ * Default offset is required for RSSI <-> dBm conversion.4141 */4242#define DEFAULT_RSSI_OFFSET 1204343
+1-1
drivers/net/wireless/rt2x00/rt73usb.h
···37373838/*3939 * Signal information.4040- * Defaul offset is required for RSSI <-> dBm conversion.4040+ * Default offset is required for RSSI <-> dBm conversion.4141 */4242#define DEFAULT_RSSI_OFFSET 1204343
+1-1
drivers/net/wireless/wavelan_cs.c
···39873987#endif3988398839893989 /* Prevent reentrancy. We need to do that because we may have39903990- * multiple interrupt handler running concurently.39903990+ * multiple interrupt handler running concurrently.39913991 * It is safe because interrupts are disabled before aquiring39923992 * the spinlock. */39933993 spin_lock(&lp->spinlock);
+1-1
drivers/net/wireless/zd1211rw/zd_mac.c
···312312 * zd_mac_tx_failed - callback for failed frames313313 * @dev: the mac80211 wireless device314314 *315315- * This function is called if a frame couldn't be succesfully be315315+ * This function is called if a frame couldn't be successfully be316316 * transferred. The first frame from the tx queue, will be selected and317317 * reported as error to the upper layers.318318 */
+1-1
drivers/parisc/ccio-dma.c
···650650 * Mark the I/O Pdir entries invalid and blow away the corresponding I/O651651 * TLB entries.652652 *653653- * FIXME: at some threshhold it might be "cheaper" to just blow653653+ * FIXME: at some threshold it might be "cheaper" to just blow654654 * away the entire I/O TLB instead of individual entries.655655 *656656 * FIXME: Uturn has 256 TLB entries. We don't need to purge every
···65456545 * The speeds are stored on handles65466546 * (FANA:FAN9), (FANC:FANB), (FANE:FAND).65476547 *65486548- * There are three default speed sets, acessible as handles:65486548+ * There are three default speed sets, accessible as handles:65496549 * FS1L,FS1M,FS1H; FS2L,FS2M,FS2H; FS3L,FS3M,FS3H65506550 *65516551 * ACPI DSDT switches which set is in use depending on various
+4-4
drivers/pnp/pnpbios/rsparser.c
···191191 return (unsigned char *)p;192192 break;193193194194- default: /* an unkown tag */194194+ default: /* an unknown tag */195195len_err:196196 dev_err(&dev->dev, "unknown tag %#x length %d\n",197197 tag, len);···405405 case SMALL_TAG_END:406406 return p + 2;407407408408- default: /* an unkown tag */408408+ default: /* an unknown tag */409409len_err:410410 dev_err(&dev->dev, "unknown tag %#x length %d\n",411411 tag, len);···475475 return (unsigned char *)p;476476 break;477477478478- default: /* an unkown tag */478478+ default: /* an unknown tag */479479len_err:480480 dev_err(&dev->dev, "unknown tag %#x length %d\n",481481 tag, len);···744744 return (unsigned char *)p;745745 break;746746747747- default: /* an unkown tag */747747+ default: /* an unknown tag */748748len_err:749749 dev_err(&dev->dev, "unknown tag %#x length %d\n",750750 tag, len);
+1-1
drivers/ps3/ps3-sys-manager.c
···4646/**4747 * struct ps3_sys_manager_header - System manager message header.4848 * @version: Header version, currently 1.4949- * @size: Header size in bytes, curently 16.4949+ * @size: Header size in bytes, currently 16.5050 * @payload_size: Message payload size in bytes.5151 * @service_id: Message type, one of enum ps3_sys_manager_service_id.5252 * @request_tag: Unique number to identify reply.
+2-2
drivers/rtc/rtc-ds1511.c
···22 * An rtc driver for the Dallas DS151133 *44 * Copyright (C) 2006 Atsushi Nemoto <anemo@mba.ocn.ne.jp>55- * Copyright (C) 2007 Andrew Sharp <andy.sharp@onstor.com>55+ * Copyright (C) 2007 Andrew Sharp <andy.sharp@lsi.com>66 *77 * This program is free software; you can redistribute it and/or modify88 * it under the terms of the GNU General Public License version 2 as···636636module_init(ds1511_rtc_init);637637module_exit(ds1511_rtc_exit);638638639639-MODULE_AUTHOR("Andrew Sharp <andy.sharp@onstor.com>");639639+MODULE_AUTHOR("Andrew Sharp <andy.sharp@lsi.com>");640640MODULE_DESCRIPTION("Dallas DS1511 RTC driver");641641MODULE_LICENSE("GPL");642642MODULE_VERSION(DRV_VERSION);
+1-1
drivers/rtc/rtc-stk17ta8.c
···286286 .write = stk17ta8_nvram_write,287287};288288289289-static int __init stk17ta8_rtc_probe(struct platform_device *pdev)289289+static int __devinit stk17ta8_rtc_probe(struct platform_device *pdev)290290{291291 struct rtc_device *rtc;292292 struct resource *res;
+1-1
drivers/rtc/rtc-v3020.c
···335335 goto err_io;336336 }337337338338- /* Make sure frequency measurment mode, test modes, and lock338338+ /* Make sure frequency measurement mode, test modes, and lock339339 * are all disabled */340340 v3020_set_reg(chip, V3020_STATUS_0, 0x0);341341
···7474 }7575 rc = raw3270_start(view, rq);7676 if (rc == 0) {7777- /* Started sucessfully. Now wait for completion. */7777+ /* Started successfully. Now wait for completion. */7878 wait_event(fp->wait, raw3270_request_final(rq));7979 }8080 } while (rc == -EACCES);
+1-1
drivers/s390/cio/chp.c
···6565 chpid_to_chp(chpid)->state = onoff;6666}67676868-/* On succes return 0 if channel-path is varied offline, 1 if it is varied6868+/* On success return 0 if channel-path is varied offline, 1 if it is varied6969 * online. Return -ENODEV if channel-path is not registered. */7070int chp_get_status(struct chp_id chpid)7171{
+1-1
drivers/s390/cio/cmf.c
···462462 * block of memory, which can not be moved as long as any channel463463 * is active. Therefore, a maximum number of subchannels needs to464464 * be defined somewhere. This is a module parameter, defaulting to465465- * a resonable value of 1024, or 32 kb of memory.465465+ * a reasonable value of 1024, or 32 kb of memory.466466 * Current kernels don't allow kmalloc with more than 128kb, so the467467 * maximum is 4096.468468 */
···9292#define ENVCTRL_CPUTEMP_MON 1 /* cpu temperature monitor */9393#define ENVCTRL_CPUVOLTAGE_MON 2 /* voltage monitor */9494#define ENVCTRL_FANSTAT_MON 3 /* fan status monitor */9595-#define ENVCTRL_ETHERTEMP_MON 4 /* ethernet temperarture */9595+#define ENVCTRL_ETHERTEMP_MON 4 /* ethernet temperature */9696 /* monitor */9797#define ENVCTRL_VOLTAGESTAT_MON 5 /* voltage status monitor */9898#define ENVCTRL_MTHRBDTEMP_MON 6 /* motherboard temperature */9999-#define ENVCTRL_SCSITEMP_MON 7 /* scsi temperarture */9999+#define ENVCTRL_SCSITEMP_MON 7 /* scsi temperature */100100#define ENVCTRL_GLOBALADDR_MON 8 /* global address */101101102102/* Child device type.
+1-1
drivers/scsi/3w-9xxx.c
···732732 break;733733 case TW_IOCTL_GET_COMPATIBILITY_INFO:734734 tw_ioctl->driver_command.status = 0;735735- /* Copy compatiblity struct into ioctl data buffer */735735+ /* Copy compatibility struct into ioctl data buffer */736736 tw_compat_info = (TW_Compatibility_Info *)tw_ioctl->data_buffer;737737 memcpy(tw_compat_info, &tw_dev->tw_compat_info, sizeof(TW_Compatibility_Info));738738 break;
+1-1
drivers/scsi/3w-xxxx.c
···8899 Copyright (C) 1999-2009 3ware Inc.10101111- Kernel compatiblity By: Andre Hedrick <andre@suse.com>1111+ Kernel compatibility By: Andre Hedrick <andre@suse.com>1212 Non-Copyright (C) 2000 Andre Hedrick <andre@suse.com>13131414 Further tiny build fixes and trivial hoovering Alan Cox
+1-1
drivers/scsi/53c700.c
···14911491 unsigned long flags;14921492 int handled = 0;1493149314941494- /* Use the host lock to serialise acess to the 53c70014941494+ /* Use the host lock to serialise access to the 53c70014951495 * hardware. Note: In future, we may need to take the queue14961496 * lock to enter the done routines. When that happens, we14971497 * need to ensure that for this driver, the host lock and the
+3-3
drivers/scsi/aacraid/aacraid.h
···526526527527/*528528 * The adapter interface specs all queues to be located in the same529529- * physically contigous block. The host structure that defines the529529+ * physically contiguous block. The host structure that defines the530530 * commuication queues will assume they are each a separate physically531531- * contigous memory region that will support them all being one big532532- * contigous block.531531+ * contiguous memory region that will support them all being one big532532+ * contiguous block.533533 * There is a command and response queue for each level and direction of534534 * commuication. These regions are accessed by both the host and adapter.535535 */
+1-1
drivers/scsi/aacraid/comminit.c
···226226 spin_lock_init(&dev->fib_lock);227227228228 /*229229- * Allocate the physically contigous space for the commuication229229+ * Allocate the physically contiguous space for the commuication230230 * queue headers. 231231 */232232
+1-1
drivers/scsi/advansys.c
···79697969 ASC_DBG(1, "before AscInitAsc1000Driver()\n");79707970 status = AscInitAsc1000Driver(asc_dvc);7971797179727972- /* Refer to ASC_IERR_* defintions for meaning of 'err_code'. */79727972+ /* Refer to ASC_IERR_* definitions for meaning of 'err_code'. */79737973 if (asc_dvc->err_code) {79747974 scmd_printk(KERN_INFO, scp, "SCSI bus reset error: "79757975 "0x%x\n", asc_dvc->err_code);
+2-2
drivers/scsi/aic7xxx/aic79xx.seq
···217217scbdma_tohost_done:218218 test CCSCBCTL, CCARREN jz fill_qoutfifo_dmadone;219219 /*220220- * An SCB has been succesfully uploaded to the host.220220+ * An SCB has been successfully uploaded to the host.221221 * If the SCB was uploaded for some reason other than222222 * bad SCSI status (currently only for underruns), we223223 * queue the SCB for normal completion. Otherwise, we···12811281 * Is it a disconnect message? Set a flag in the SCB to remind us12821282 * and await the bus going free. If this is an untagged transaction12831283 * store the SCB id for it in our untagged target table for lookup on12841284- * a reselction.12841284+ * a reselection.12851285 */12861286mesgin_disconnect:12871287 /*
+1-1
drivers/scsi/aic7xxx/aic79xx_core.c
···24872487 /*24882488 * Although the driver does not care about the24892489 * 'Selection in Progress' status bit, the busy24902490- * LED does. SELINGO is only cleared by a sucessfull24902490+ * LED does. SELINGO is only cleared by a successfull24912491 * selection, so we must manually clear it to insure24922492 * the LED turns off just incase no future successful24932493 * selections occur (e.g. no devices on the bus).
+1-1
drivers/scsi/aic7xxx/aic79xx_osm.c
···23352335 /*23362336 * The sequencer will never re-reference the23372337 * in-core SCB. To make sure we are notified23382338- * during reslection, set the MK_MESSAGE flag in23382338+ * during reselection, set the MK_MESSAGE flag in23392339 * the card's copy of the SCB.23402340 */23412341 ahd_outb(ahd, SCB_CONTROL,
+1-1
drivers/scsi/aic7xxx/aic7xxx.seq
···16931693 * Is it a disconnect message? Set a flag in the SCB to remind us16941694 * and await the bus going free. If this is an untagged transaction16951695 * store the SCB id for it in our untagged target table for lookup on16961696- * a reselction.16961696+ * a reselection.16971697 */16981698mesgin_disconnect:16991699 /*
+1-1
drivers/scsi/aic7xxx/aic7xxx_core.c
···17331733 /*17341734 * Although the driver does not care about the17351735 * 'Selection in Progress' status bit, the busy17361736- * LED does. SELINGO is only cleared by a sucessfull17361736+ * LED does. SELINGO is only cleared by a successfull17371737 * selection, so we must manually clear it to insure17381738 * the LED turns off just incase no future successful17391739 * selections occur (e.g. no devices on the bus).
+1-1
drivers/scsi/aic7xxx/aic7xxx_osm.c
···22902290 * In the non-paging case, the sequencer will22912291 * never re-reference the in-core SCB.22922292 * To make sure we are notified during22932293- * reslection, set the MK_MESSAGE flag in22932293+ * reselection, set the MK_MESSAGE flag in22942294 * the card's copy of the SCB.22952295 */22962296 if ((ahc->flags & AHC_PAGESCBS) == 0) {
+1-1
drivers/scsi/aic94xx/aic94xx_reg_def.h
···11/*22- * Aic94xx SAS/SATA driver hardware registers defintions.22+ * Aic94xx SAS/SATA driver hardware registers definitions.33 *44 * Copyright (C) 2004 Adaptec, Inc. All rights reserved.55 * Copyright (C) 2004 David Chaw <david_chaw@adaptec.com>
+1-1
drivers/scsi/bfa/include/defs/bfa_defs_pport.h
···6161 * Port operational type (in sync with SNIA port type).6262 */6363enum bfa_pport_type {6464- BFA_PPORT_TYPE_UNKNOWN = 1, /* port type is unkown */6464+ BFA_PPORT_TYPE_UNKNOWN = 1, /* port type is unknown */6565 BFA_PPORT_TYPE_TRUNKED = 2, /* Trunked mode */6666 BFA_PPORT_TYPE_NPORT = 5, /* P2P with switched fabric */6767 BFA_PPORT_TYPE_NLPORT = 6, /* public loop */
+1-1
drivers/scsi/bfa/include/defs/bfa_defs_tsensor.h
···2525 * Temperature sensor status values2626 */2727enum bfa_tsensor_status {2828- BFA_TSENSOR_STATUS_UNKNOWN = 1, /* unkown status */2828+ BFA_TSENSOR_STATUS_UNKNOWN = 1, /* unknown status */2929 BFA_TSENSOR_STATUS_FAULTY = 2, /* sensor is faulty */3030 BFA_TSENSOR_STATUS_BELOW_MIN = 3, /* temperature below mininum */3131 BFA_TSENSOR_STATUS_NOMINAL = 4, /* normal temperature */
+2-2
drivers/scsi/bfa/include/protocol/ct.h
···8282};83838484/*8585- * defintions for CT reason code8585+ * definitions for CT reason code8686 */8787enum {8888 CT_RSN_INV_CMD = 0x01,···129129};130130131131/*132132- * defintions for the explanation code for all servers132132+ * definitions for the explanation code for all servers133133 */134134enum {135135 CT_EXP_AUTH_EXCEPTION = 0xF1,
+1-1
drivers/scsi/bnx2i/bnx2i_iscsi.c
···1883188318841884 bnx2i_ep = ep->dd_data;1885188518861886- /* driver should not attempt connection cleanup untill TCP_CONNECT18861886+ /* driver should not attempt connection cleanup until TCP_CONNECT18871887 * completes either successfully or fails. Timeout is 9-secs, so18881888 * wait for it to complete18891889 */
+1-1
drivers/scsi/dc395x.c
···15091509 * Try anyway?15101510 *15111511 * We could, BUT: Sometimes the TRM_S1040 misses to produce a Selection15121512- * Timeout, a Disconnect or a Reselction IRQ, so we would be screwed!15121512+ * Timeout, a Disconnect or a Reselection IRQ, so we would be screwed!15131513 * (This is likely to be a bug in the hardware. Obviously, most people15141514 * only have one initiator per SCSI bus.)15151515 * Instead let this fail and have the timer make sure the command is
+1-1
drivers/scsi/dmx3191d.c
···3131#include <scsi/scsi_host.h>32323333/*3434- * Defintions for the generic 5380 driver.3434+ * Definitions for the generic 5380 driver.3535 */3636#define AUTOSENSE3737
+1-1
drivers/scsi/hptiop.c
···834834 atomic_read(&hba->resetting) == 0, 60 * HZ);835835836836 if (atomic_read(&hba->resetting)) {837837- /* IOP is in unkown state, abort reset */837837+ /* IOP is in unknown state, abort reset */838838 printk(KERN_ERR "scsi%d: reset failed\n", hba->host->host_no);839839 return -1;840840 }
+1-1
drivers/scsi/libfc/fc_lport.c
···5656 * at the same time.5757 *5858 * When discovery succeeds or fails a callback is made to the lport as5959- * notification. Currently, succesful discovery causes the lport to take no5959+ * notification. Currently, successful discovery causes the lport to take no6060 * action. A failure will cause the lport to reset. There is likely a circular6161 * locking problem with this implementation.6262 */
+1-1
drivers/scsi/libiscsi_tcp.c
···10041004 * iscsi_tcp_task_xmit - xmit normal PDU task10051005 * @task: iscsi command task10061006 *10071007- * We're expected to return 0 when everything was transmitted succesfully,10071007+ * We're expected to return 0 when everything was transmitted successfully,10081008 * -EAGAIN if there's still data in the queue, or != 0 for any other kind10091009 * of error.10101010 */
+2-2
drivers/scsi/lpfc/lpfc_attr.c
···654654 * Notes:655655 * Assumes any error from lpfc_selective_reset() will be negative.656656 * If lpfc_selective_reset() returns zero then the length of the buffer657657- * is returned which indicates succcess657657+ * is returned which indicates success658658 *659659 * Returns:660660 * -EINVAL if the buffer does not contain the string "selective"···31473147 * sysfs_ctlreg_read - Read method for reading from ctlreg31483148 * @kobj: kernel kobject that contains the kernel class device.31493149 * @bin_attr: kernel attributes passed to us.31503150- * @buf: if succesful contains the data from the adapter IOREG space.31503150+ * @buf: if successful contains the data from the adapter IOREG space.31513151 * @off: offset into buffer to beginning of data.31523152 * @count: bytes to transfer.31533153 *
+2-2
drivers/scsi/lpfc/lpfc_els.c
···802802803803 /* FLOGI completes successfully */804804 lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,805805- "0101 FLOGI completes sucessfully "805805+ "0101 FLOGI completes successfully "806806 "Data: x%x x%x x%x x%x\n",807807 irsp->un.ulpWord[4], sp->cmn.e_d_tov,808808 sp->cmn.w2.r_a_tov, sp->cmn.edtovResolution);···41334133 /* Indicate we are walking fc_rscn_id_list on this vport */41344134 vport->fc_rscn_flush = 1;41354135 spin_unlock_irq(shost->host_lock);41364136- /* Get the array count after sucessfully have the token */41364136+ /* Get the array count after successfully have the token */41374137 rscn_cnt = vport->fc_rscn_id_cnt;41384138 /* If we are already processing an RSCN, save the received41394139 * RSCN payload buffer, cmdiocb->context2 to process later.
···2894289428952895#ifdef CONFIG_SCSI_MPT2SAS_LOGGING28962896/**28972897- * _scsih_scsi_ioc_info - translated non-succesfull SCSI_IO request28972897+ * _scsih_scsi_ioc_info - translated non-successfull SCSI_IO request28982898 * @ioc: per adapter object28992899 * @scmd: pointer to scsi command object29002900 * @mpi_reply: reply mf payload returned from firmware
+1-1
drivers/scsi/ncr53c8xx.c
···64956495 ** we force a SIR_NEGO_PROTO interrupt (it is a hack that avoids 64966496 ** bloat for such a should_not_happen situation).64976497 ** In all other situation, we reset the BUS.64986498- ** Are these assumptions reasonnable ? (Wait and see ...)64986498+ ** Are these assumptions reasonable ? (Wait and see ...)64996499 */65006500unexpected_phase:65016501 dsp -= 8;
+1-1
drivers/scsi/nsp32.c
···14191419 nsp32_msg(KERN_ERR, "Received unexpected BMCNTERR IRQ! ");14201420 /*14211421 * TODO: To be implemented improving bus master14221422- * transfer reliablity when BMCNTERR is occurred in14221422+ * transfer reliability when BMCNTERR is occurred in14231423 * AutoSCSI phase described in specification.14241424 */14251425 }
+3-3
drivers/scsi/pmcraid.c
···33423342 * @direction : data transfer direction33433343 *33443344 * Return value33453345- * 0 on sucess, non-zero error code on failure33453345+ * 0 on success, non-zero error code on failure33463346 */33473347static int pmcraid_build_passthrough_ioadls(33483348 struct pmcraid_cmd *cmd,···34013401 * @direction: data transfer direction34023402 *34033403 * Return value34043404- * 0 on sucess, non-zero error code on failure34043404+ * 0 on success, non-zero error code on failure34053405 */34063406static void pmcraid_release_passthrough_ioadls(34073407 struct pmcraid_cmd *cmd,···34293429 * @arg: pointer to pmcraid_passthrough_buffer user buffer34303430 *34313431 * Return value34323432- * 0 on sucess, non-zero error code on failure34323432+ * 0 on success, non-zero error code on failure34333433 */34343434static long pmcraid_ioctl_passthrough(34353435 struct pmcraid_instance *pinstance,
···613613 * @data_buf: pointer to vendor unique data buffer614614 *615615 * Returns:616616- * 0 on succesful return616616+ * 0 on successful return617617 * otherwise, failing error code618618 *619619 * Notes:
+3-3
drivers/scsi/scsi_transport_sas.c
···666666 *667667 * Note:668668 * This function must only be called on a PHY that has not669669- * sucessfully been added using sas_phy_add().669669+ * successfully been added using sas_phy_add().670670 */671671void sas_phy_free(struct sas_phy *phy)672672{···896896 *897897 * Note:898898 * This function must only be called on a PORT that has not899899- * sucessfully been added using sas_port_add().899899+ * successfully been added using sas_port_add().900900 */901901void sas_port_free(struct sas_port *port)902902{···14761476 *14771477 * Note:14781478 * This function must only be called on a remote14791479- * PHY that has not sucessfully been added using14791479+ * PHY that has not successfully been added using14801480 * sas_rphy_add() (or has been sas_rphy_remove()'d)14811481 */14821482void sas_rphy_free(struct sas_rphy *rphy)
+1-1
drivers/scsi/sym53c8xx_2/sym_glue.c
···18641864 *18651865 * This routine is similar to sym_set_workarounds(), except18661866 * that, at this point, we already know that the device was18671867- * succesfully intialized at least once before, and so most18671867+ * successfully intialized at least once before, and so most18681868 * of the steps taken there are un-needed here.18691869 */18701870static void sym2_reset_workarounds(struct pci_dev *pdev)
+1-1
drivers/scsi/sym53c8xx_2/sym_hipd.c
···26922692 * we force a SIR_NEGO_PROTO interrupt (it is a hack that avoids 26932693 * bloat for such a should_not_happen situation).26942694 * In all other situation, we reset the BUS.26952695- * Are these assumptions reasonnable ? (Wait and see ...)26952695+ * Are these assumptions reasonable ? (Wait and see ...)26962696 */26972697unexpected_phase:26982698 dsp -= 8;
+1-1
drivers/scsi/sym53c8xx_2/sym_hipd.h
···5454 *5555 * SYM_OPT_LIMIT_COMMAND_REORDERING5656 * When this option is set, the driver tries to limit tagged 5757- * command reordering to some reasonnable value.5757+ * command reordering to some reasonable value.5858 * (set for Linux)5959 */6060#if 0
+1-1
drivers/scsi/wd7000.c
···161161 *162162 * 2003/02/12 - Christoph Hellwig <hch@infradead.org>163163 *164164- * Cleaned up host template defintion164164+ * Cleaned up host template definition165165 * Removed now obsolete wd7000.h166166 */167167
···7373}74747575/*7676- * Register acessors. Note that we don't need to enforce a recovery7676+ * Register accessors. Note that we don't need to enforce a recovery7777 * delay on PCI PowerMac hardware, it's dealt in HW by the MacIO chip,7878 * though if we try to use this driver on older machines, we might have7979 * to add it back
+1-1
drivers/serial/ucc_uart.c
···313313 * This function will attempt to stuff of all the characters from the314314 * kernel's transmit buffer into TX BDs.315315 *316316- * A return value of non-zero indicates that it sucessfully stuffed all316316+ * A return value of non-zero indicates that it successfully stuffed all317317 * characters from the kernel buffer.318318 *319319 * A return value of zero indicates that there are still characters in the
+1-1
drivers/spi/spidev.c
···4242 * This supports acccess to SPI devices using normal userspace I/O calls.4343 * Note that while traditional UNIX/POSIX I/O semantics are half duplex,4444 * and often mask message boundaries, full SPI support requires full duplex4545- * transfers. There are several kinds of of internal message boundaries to4545+ * transfers. There are several kinds of internal message boundaries to4646 * handle chipselect management and other protocol options.4747 *4848 * SPI has a character major number assigned. We allocate minor numbers
+1-1
drivers/staging/otus/80211core/pub_zfi.h
···2020#include "../oal_dt.h"21212222/***** Section 1 : Tunable Parameters *****/2323-/* The defintions in this section are tunabel parameters */2323+/* The definitions in this section are tunabel parameters */24242525/* Maximum number of BSS that could be scaned */2626#define ZM_MAX_BSS 128
+1-1
drivers/staging/otus/zdcompat.h
···1717/* Module Name : zdcompat.h */1818/* */1919/* Abstract */2020-/* This module contains function defintion for compatibility. */2020+/* This module contains function definition for compatibility. */2121/* */2222/* NOTES */2323/* Platform dependent. */
+1-1
drivers/staging/rtl8187se/r8180.h
···521521 //u32 NumTxOkInPeriod; //YJ,del,080828522522 u8 TxPollingTimes;523523524524- bool bApBufOurFrame;// TRUE if AP buffer our unicast data , we will keep eAwake untill receive data or timeout.524524+ bool bApBufOurFrame;// TRUE if AP buffer our unicast data , we will keep eAwake until receive data or timeout.525525 u8 WaitBufDataBcnCount;526526 u8 WaitBufDataTimeOut;527527
+1-1
drivers/staging/rtl8192su/r8192S_phyreg.h
···3838// 2. 0x800/0x900/0xA00/0xC00/0xD00/0xE003939// 3. RF register 0x00-2E4040// 4. Bit Mask for BB/RF register4141-// 5. Other defintion for BB/RF R/W4141+// 5. Other definition for BB/RF R/W4242//43434444
+2-2
drivers/telephony/ixj.c
···41904190 ixj_WriteDSPCommand(0x1224, j);4191419141924192 ixj_WriteDSPCommand(0xE014, j);41934193- ixj_WriteDSPCommand(0x0003, j); /* Lock threashold at 3dB */41934193+ ixj_WriteDSPCommand(0x0003, j); /* Lock threshold at 3dB */4194419441954195 ixj_WriteDSPCommand(0xE338, j); /* Set Echo Suppresser Attenuation to 0dB */41964196···42354235 ixj_WriteDSPCommand(0x1224, j);4236423642374237 ixj_WriteDSPCommand(0xE014, j);42384238- ixj_WriteDSPCommand(0x0003, j); /* Lock threashold at 3dB */42384238+ ixj_WriteDSPCommand(0x0003, j); /* Lock threshold at 3dB */4239423942404240 ixj_WriteDSPCommand(0xE338, j); /* Set Echo Suppresser Attenuation to 0dB */42414241
+1-1
drivers/usb/atm/ueagle-atm.c
···19581958 goto bad1;1959195919601960 /* FIXME : ADI930 reply wrong preambule (func = 2, sub = 2) to19611961- * the first MEMACESS cmv. Ignore it...19611961+ * the first MEMACCESS cmv. Ignore it...19621962 */19631963 if (cmv->bFunction != dsc->function) {19641964 if (UEA_CHIP_VERSION(sc) == ADI930
+1-1
drivers/usb/class/usbtmc.c
···11/**22- * drivers/usb/class/usbtmc.c - USB Test & Measurment class driver22+ * drivers/usb/class/usbtmc.c - USB Test & Measurement class driver33 *44 * Copyright (C) 2007 Stefan Kopp, Gechingen, Germany55 * Copyright (C) 2008 Novell, Inc.
+1-1
drivers/usb/core/message.c
···18901890 * routine gets around the normal restrictions by using a work thread to18911891 * submit the change-config request.18921892 *18931893- * Returns 0 if the request was succesfully queued, error code otherwise.18931893+ * Returns 0 if the request was successfully queued, error code otherwise.18941894 * The caller has no way to know whether the queued request will eventually18951895 * succeed.18961896 */
+1-1
drivers/usb/gadget/f_acm.c
···432432 * @length: size of data433433 * Context: irqs blocked, acm->lock held, acm_notify_req non-null434434 *435435- * Returns zero on sucess or a negative errno.435435+ * Returns zero on success or a negative errno.436436 *437437 * See section 6.3.5 of the CDC 1.1 specification for information438438 * about the only notification we issue: SerialState change.
+1-1
drivers/usb/gadget/pxa27x_udc.c
···15241524 * pxa_udc_wakeup - Force udc device out of suspend15251525 * @_gadget: usb gadget15261526 *15271527- * Returns 0 if succesfull, error code otherwise15271527+ * Returns 0 if successfull, error code otherwise15281528 */15291529static int pxa_udc_wakeup(struct usb_gadget *_gadget)15301530{
···627627628628629629/*630630- * Process normal completions(error or sucess) and clean the schedule.630630+ * Process normal completions(error or success) and clean the schedule.631631 *632632 * This is the main path for handing urbs back to drivers. The only other patth633633 * is process_del_list(),which unlinks URBs by scanning EDs,instead of scanning
+1-1
drivers/usb/wusbcore/crypto.c
···111111 *112112 * CCM uses Ax blocks to generate a keystream with which the MIC and113113 * the message's payload are encoded. A0 always encrypts/decrypts the114114- * MIC. Ax (x>0) are used for the sucesive payload blocks.114114+ * MIC. Ax (x>0) are used for the successive payload blocks.115115 *116116 * The x is the counter, and is increased for each block.117117 */
+2-2
drivers/usb/wusbcore/wa-xfer.c
···558558/*559559 * Callback for the segment request560560 *561561- * If succesful transition state (unless already transitioned or561561+ * If successful transition state (unless already transitioned or562562 * outbound transfer); otherwise, take a note of the error, mark this563563 * segment done and try completion.564564 *···13641364/*13651365 * Callback for the IN data phase13661366 *13671367- * If succesful transition state; otherwise, take a note of the13671367+ * If successful transition state; otherwise, take a note of the13681368 * error, mark this segment done and try completion.13691369 *13701370 * Note we don't access until we are sure that the transfer hasn't
+1-1
drivers/uwb/i1480/dfu/usb.c
···229229 * will verify it.230230 *231231 * Set i1480->evt_result with the result of getting the event or its232232- * size (if succesful).232232+ * size (if successful).233233 *234234 * Delivers the data directly to i1480->evt_buf235235 */
+1-1
drivers/uwb/neh.c
···150150 * 0xff is invalid, so they must not be used. Initialization151151 * fills up those two in the bitmap so they are not allocated.152152 *153153- * We spread the allocation around to reduce the posiblity of two153153+ * We spread the allocation around to reduce the possibility of two154154 * consecutive opened @neh's getting the same context ID assigned (to155155 * avoid surprises with late events that timed out long time ago). So156156 * first we search from where @rc->ctx_roll is, if not found, we
+1-1
drivers/uwb/wlp/txrx.c
···282282 * and transmission will be done by the calling function.283283 * @dst: On return this will contain the device address to which the284284 * frame is destined.285285- * @returns: 0 on success no tx : WLP header sucessfully applied to skb buffer,285285+ * @returns: 0 on success no tx : WLP header successfully applied to skb buffer,286286 * calling function can proceed with tx287287 * 1 on success with tx : WLP will take over transmission of this288288 * frame
+1-1
drivers/video/atmel_lcdfb.c
···964964 if (sinfo->atmel_lcdfb_power_control)965965 sinfo->atmel_lcdfb_power_control(1);966966967967- dev_info(dev, "fb%d: Atmel LCDC at 0x%08lx (mapped at %p), irq %lu\n",967967+ dev_info(dev, "fb%d: Atmel LCDC at 0x%08lx (mapped at %p), irq %d\n",968968 info->node, info->fix.mmio_start, sinfo->mmio, sinfo->irq_base);969969970970 return 0;
···158158 goto err_free_pwm;159159 }160160161161- /* Turn display off by defatult. */161161+ /* Turn display off by default. */162162 retval = gpio_direction_output(pwmbl->gpio_on,163163 0 ^ pdata->on_active_low);164164 if (retval)
+1-1
drivers/video/backlight/tosa_lcd.c
···177177 if (!data)178178 return -ENOMEM;179179180180- data->is_vga = true; /* defaut to VGA mode */180180+ data->is_vga = true; /* default to VGA mode */181181182182 /*183183 * bits_per_word cannot be configured in platform data
+1-1
drivers/video/console/sticore.c
···436436 (offs < PCI_BASE_ADDRESS_0 ||437437 offs > PCI_BASE_ADDRESS_5)) {438438 printk (KERN_WARNING439439- "STI pci region maping for region %d (%02x) can't be mapped\n",439439+ "STI pci region mapping for region %d (%02x) can't be mapped\n",440440 i,sti->rm_entry[i]);441441 continue;442442 }
+1-1
drivers/video/fb_defio.c
···7171{7272 struct fb_info *info = file->private_data;73737474- /* Skip if deferred io is complied-in but disabled on this fbdev */7474+ /* Skip if deferred io is compiled-in but disabled on this fbdev */7575 if (!info->fbdefio)7676 return 0;7777
+1-1
drivers/video/gbefb.c
···701701 blocks of 512x128, 256x128 or 128x128 pixels, respectively for 8bit,702702 16bit and 32 bit modes (64 kB). They cover the screen with partial703703 tiles on the right and/or bottom of the screen if needed.704704- For exemple in 640x480 8 bit mode the mapping is:704704+ For example in 640x480 8 bit mode the mapping is:705705706706 <-------- 640 ----->707707 <---- 512 ----><128|384 offscreen>
+2-2
drivers/video/omap/lcd_ams_delta.c
···123123 },124124};125125126126-static int ams_delta_panel_drv_init(void)126126+static int __init ams_delta_panel_drv_init(void)127127{128128 return platform_driver_register(&ams_delta_panel_driver);129129}130130131131-static void ams_delta_panel_drv_cleanup(void)131131+static void __exit ams_delta_panel_drv_cleanup(void)132132{133133 platform_driver_unregister(&ams_delta_panel_driver);134134}
+2-2
drivers/video/omap/lcd_mipid.c
···607607 .remove = __devexit_p(mipid_spi_remove),608608};609609610610-static int mipid_drv_init(void)610610+static int __init mipid_drv_init(void)611611{612612 spi_register_driver(&mipid_spi_driver);613613···615615}616616module_init(mipid_drv_init);617617618618-static void mipid_drv_cleanup(void)618618+static void __exit mipid_drv_cleanup(void)619619{620620 spi_unregister_driver(&mipid_spi_driver);621621}
+2-2
drivers/video/sgivwfb.c
···260260 var->grayscale = 0; /* No grayscale for now */261261262262 /* determine valid resolution and timing */263263- for (min_mode = 0; min_mode < DBE_VT_SIZE; min_mode++) {263263+ for (min_mode = 0; min_mode < ARRAY_SIZE(dbeVTimings); min_mode++) {264264 if (dbeVTimings[min_mode].width >= var->xres &&265265 dbeVTimings[min_mode].height >= var->yres)266266 break;267267 }268268269269- if (min_mode == DBE_VT_SIZE)269269+ if (min_mode == ARRAY_SIZE(dbeVTimings))270270 return -EINVAL; /* Resolution to high */271271272272 /* XXX FIXME - should try to pick best refresh rate */
+2-2
drivers/video/stifb.c
···756756 if (fb->info.var.bits_per_pixel == 32)757757 controlPlaneReg = 0x04000F00;758758 else759759- controlPlaneReg = 0x00000F00; /* 0x00000800 should be enought, but lets clear all 4 bits */759759+ controlPlaneReg = 0x00000F00; /* 0x00000800 should be enough, but lets clear all 4 bits */760760 else761761- controlPlaneReg = 0x00000F00; /* 0x00000100 should be enought, but lets clear all 4 bits */761761+ controlPlaneReg = 0x00000F00; /* 0x00000100 should be enough, but lets clear all 4 bits */762762763763 switch (enable) {764764 case ENABLE:
+1-1
drivers/video/tdfxfb.c
···5252 *5353 * 0.1.3 (released 1999-11-02) added Attila's panning support, code5454 * reorg, hwcursor address page size alignment5555- * (for mmaping both frame buffer and regs),5555+ * (for mmapping both frame buffer and regs),5656 * and my changes to get rid of hardcoded5757 * VGA i/o register locations (uses PCI5858 * configuration info now)
+2-2
drivers/video/via/dvi.c
···467467 default:468468 viaparinfo->tmds_setting_info->dvi_panel_size =469469 VIA_RES_1024X768;470470- DEBUG_MSG(KERN_INFO "Unknow panel size max resolution = %d !\470470+ DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d !\471471 set default panel size.\n", max_h);472472 break;473473 }···534534 default:535535 viaparinfo->tmds_setting_info->dvi_panel_size =536536 VIA_RES_1024X768;537537- DEBUG_MSG(KERN_INFO "Unknow panel size max resolution = %d!\537537+ DEBUG_MSG(KERN_INFO "Unknown panel size max resolution = %d!\538538 set default panel size.\n", HSize);539539 break;540540 }
···508508 * deactivating the watchdog before it is shut down by it.509509 *510510 * NOTE: on future versions of the watchdog, this restriction is511511- * gone: the watchdog will be reloaded with a defaul value (1 min)511511+ * gone: the watchdog will be reloaded with a default value (1 min)512512 * instead of last value, and you can conveniently set the watchdog513513 * timeout to 10ms (value = 1) without any problems.514514 */
+1-1
drivers/watchdog/machzwd.c
···2121 * wd#1 - 2 seconds;2222 * wd#2 - 7.2 ms;2323 * After the expiration of wd#1, it can generate a NMI, SCI, SMI, or2424- * a system RESET and it starts wd#2 that unconditionaly will RESET2424+ * a system RESET and it starts wd#2 that unconditionally will RESET2525 * the system when the counter reaches zero.2626 *2727 * 14-Dec-2001 Matt Domsch <Matt_Domsch@dell.com>
+2-2
drivers/watchdog/sb_wdog.c
···11/*22 * Watchdog driver for SiByte SB1 SoCs33 *44- * Copyright (C) 2007 OnStor, Inc. * Andrew Sharp <andy.sharp@onstor.com>44+ * Copyright (C) 2007 OnStor, Inc. * Andrew Sharp <andy.sharp@lsi.com>55 *66 * This driver is intended to make the second of two hardware watchdogs77 * on the Sibyte 12XX and 11XX SoCs available to the user. There are two···326326module_init(sbwdog_init);327327module_exit(sbwdog_exit);328328329329-MODULE_AUTHOR("Andrew Sharp <andy.sharp@onstor.com>");329329+MODULE_AUTHOR("Andrew Sharp <andy.sharp@lsi.com>");330330MODULE_DESCRIPTION("SiByte Watchdog");331331332332module_param(timeout, ulong, 0);
+3-3
drivers/watchdog/wdrtas.c
···542542/**543543 * wdrtas_get_tokens - reads in RTAS tokens544544 *545545- * returns 0 on succes, <0 on failure545545+ * returns 0 on success, <0 on failure546546 *547547 * wdrtas_get_tokens reads in the tokens for the RTAS calls used in548548 * this watchdog driver. It tolerates, if "get-sensor-state" and···598598/**599599 * wdrtas_register_devs - registers the misc dev handlers600600 *601601- * returns 0 on succes, <0 on failure601601+ * returns 0 on success, <0 on failure602602 *603603 * wdrtas_register_devs registers the watchdog and temperature watchdog604604 * misc devs···630630/**631631 * wdrtas_init - init function of the watchdog driver632632 *633633- * returns 0 on succes, <0 on failure633633+ * returns 0 on success, <0 on failure634634 *635635 * registers the file handlers and the reboot notifier636636 */
+1-1
fs/binfmt_elf.c
···767767768768 current->mm->start_stack = bprm->p;769769770770- /* Now we do a little grungy work by mmaping the ELF image into770770+ /* Now we do a little grungy work by mmapping the ELF image into771771 the correct location in memory. */772772 for(i = 0, elf_ppnt = elf_phdata;773773 i < loc->elf_ex.e_phnum; i++, elf_ppnt++) {
+1-1
fs/bio.c
···272272 * for a &struct bio to become free. If a %NULL @bs is passed in, we will273273 * fall back to just using @kmalloc to allocate the required memory.274274 *275275- * Note that the caller must set ->bi_destructor on succesful return275275+ * Note that the caller must set ->bi_destructor on successful return276276 * of a bio, to do the appropriate freeing of the bio once the reference277277 * count drops to zero.278278 **/
+1-1
fs/btrfs/extent_map.c
···256256 * Insert @em into @tree or perform a simple forward/backward merge with257257 * existing mappings. The extent_map struct passed in will be inserted258258 * into the tree directly, with an additional reference taken, or a259259- * reference dropped if the merge attempt was sucessfull.259259+ * reference dropped if the merge attempt was successfull.260260 */261261int add_extent_mapping(struct extent_map_tree *tree,262262 struct extent_map *em)
+1-1
fs/cifs/README
···423423 source name to use to represent the client netbios machine 424424 name when doing the RFC1001 netbios session initialize.425425 direct Do not do inode data caching on files opened on this mount.426426- This precludes mmaping files on this mount. In some cases426426+ This precludes mmapping files on this mount. In some cases427427 with fast networks and little or no caching benefits on the428428 client (e.g. when the application is doing large sequential429429 reads bigger than page size without rereading the same data)
+1-1
fs/cifs/cifsglob.h
···39394040/*4141 * MAX_REQ is the maximum number of requests that WE will send4242- * on one socket concurently. It also matches the most common4242+ * on one socket concurrently. It also matches the most common4343 * value of max multiplex returned by servers. We may4444 * eventually want to use the negotiated value (in case4545 * future servers can handle more) when we are more confident that
+1-1
fs/cifs/cifspdu.h
···12271227/* empty wct response to setattr */1228122812291229/*******************************************************/12301230-/* NT Transact structure defintions follow */12301230+/* NT Transact structure definitions follow */12311231/* Currently only ioctl, acl (get security descriptor) */12321232/* and notify are implemented */12331233/*******************************************************/
+2-2
fs/cifs/inode.c
···914914/*915915 * If dentry->d_inode is null (usually meaning the cached dentry916916 * is a negative dentry) then we would attempt a standard SMB delete, but917917- * if that fails we can not attempt the fall back mechanisms on EACESS918918- * but will return the EACESS to the caller. Note that the VFS does not call917917+ * if that fails we can not attempt the fall back mechanisms on EACCESS918918+ * but will return the EACCESS to the caller. Note that the VFS does not call919919 * unlink on negative dentries currently.920920 */921921int cifs_unlink(struct inode *dir, struct dentry *dentry)
···26552655#endif26562656#ifdef TIOCSTART26572657/*26582658- * For these two we have defintions in ioctls.h and/or termios.h on26582658+ * For these two we have definitions in ioctls.h and/or termios.h on26592659 * some architectures but no actual implemention. Some applications26602660 * like bash call them if they are defined in the headers, so we provide26612661 * entries here to avoid syslog message spew.
+3-3
fs/debugfs/inode.c
···184184/**185185 * debugfs_create_file - create a file in the debugfs filesystem186186 * @name: a pointer to a string containing the name of the file to create.187187- * @mode: the permission that the file should have187187+ * @mode: the permission that the file should have.188188 * @parent: a pointer to the parent dentry for this file. This should be a189189 * directory dentry if set. If this paramater is NULL, then the190190 * file will be created in the root of the debugfs filesystem.···195195 * this file.196196 *197197 * This is the basic "create a file" function for debugfs. It allows for a198198- * wide range of flexibility in createing a file, or a directory (if you199199- * want to create a directory, the debugfs_create_dir() function is198198+ * wide range of flexibility in creating a file, or a directory (if you want199199+ * to create a directory, the debugfs_create_dir() function is200200 * recommended to be used instead.)201201 *202202 * This function will return a pointer to a dentry if it succeeds. This
+1-1
fs/dlm/plock.c
···143143}144144EXPORT_SYMBOL_GPL(dlm_posix_lock);145145146146-/* Returns failure iff a succesful lock operation should be canceled */146146+/* Returns failure iff a successful lock operation should be canceled */147147static int dlm_plock_callback(struct plock_op *op)148148{149149 struct file *file;
+1-1
fs/ext3/inode.c
···20332033 int k, err;2034203420352035 *top = 0;20362036- /* Make k index the deepest non-null offest + 1 */20362036+ /* Make k index the deepest non-null offset + 1 */20372037 for (k = depth; k > 1 && !offsets[k-1]; k--)20382038 ;20392039 partial = ext3_get_branch(inode, k, offsets, chain, &err);
+4-4
fs/ext4/inode.c
···29332933 ret = write_cache_pages(mapping, wbc, __mpage_da_writepage,29342934 &mpd);29352935 /*29362936- * If we have a contigous extent of pages and we29362936+ * If we have a contiguous extent of pages and we29372937 * haven't done the I/O yet, map the blocks and submit29382938 * them for I/O.29392939 */···40644064 int k, err;4065406540664066 *top = 0;40674067- /* Make k index the deepest non-null offest + 1 */40674067+ /* Make k index the deepest non-null offset + 1 */40684068 for (k = depth; k > 1 && !offsets[k-1]; k--)40694069 ;40704070 partial = ext4_get_branch(inode, k, offsets, chain, &err);···53765376 * worse case, the indexs blocks spread over different block groups53775377 *53785378 * If datablocks are discontiguous, they are possible to spread over53795379- * different block groups too. If they are contiugous, with flexbg,53795379+ * different block groups too. If they are contiuguous, with flexbg,53805380 * they could still across block group boundary.53815381 *53825382 * Also account for superblock, inode, quota and xattr blocks···54525452 * Calculate the journal credits for a chunk of data modification.54535453 *54545454 * This is called from DIO, fallocate or whoever calling54555455- * ext4_get_blocks() to map/allocate a chunk of contigous disk blocks.54555455+ * ext4_get_blocks() to map/allocate a chunk of contiguous disk blocks.54565456 *54575457 * journal buffers for data blocks are not included here, as DIO54585458 * and fallocate do no need to journal data buffers.
+1-1
fs/ext4/mballoc.c
···142142 * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The143143 * value of s_mb_order2_reqs can be tuned via144144 * /sys/fs/ext4/<partition>/mb_order2_req. If the request len is equal to145145- * stripe size (sbi->s_stripe), we try to search for contigous block in145145+ * stripe size (sbi->s_stripe), we try to search for contiguous block in146146 * stripe size. This should result in better allocation on RAID setups. If147147 * not, we search in the specific group using bitmap for best extents. The148148 * tunable min_to_scan and max_to_scan control the behaviour here.
···931931 * Helper function for jffs2_get_inode_nodes().932932 * The function detects whether more data should be read and reads it if yes.933933 *934934- * Returns: 0 on succes;934934+ * Returns: 0 on success;935935 * negative error code on failure.936936 */937937static int read_more(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref,
+1-1
fs/jffs2/xattr.c
···3131 * is used to release xattr name/value pair and detach from c->xattrindex.3232 * reclaim_xattr_datum(c)3333 * is used to reclaim xattr name/value pairs on the xattr name/value pair cache when3434- * memory usage by cache is over c->xdatum_mem_threshold. Currentry, this threshold 3434+ * memory usage by cache is over c->xdatum_mem_threshold. Currently, this threshold 3535 * is hard coded as 32KiB.3636 * do_verify_xattr_datum(c, xd)3737 * is used to load the xdatum informations without name/value pair from the medium.
+2-2
fs/jfs/jfs_dmap.c
···755755 * allocation group.756756 */757757 if ((blkno & (bmp->db_agsize - 1)) == 0)758758- /* check if the AG is currenly being written to.758758+ /* check if the AG is currently being written to.759759 * if so, call dbNextAG() to find a non-busy760760 * AG with sufficient free space.761761 */···33373337 for (i = 0, n = 0; i < agno; n++) {33383338 bmp->db_agfree[n] = 0; /* init collection point */3339333933403340- /* coalesce cotiguous k AGs; */33403340+ /* coalesce contiguous k AGs; */33413341 for (j = 0; j < k && i < agno; j++, i++) {33423342 /* merge AGi to AGn */33433343 bmp->db_agfree[n] += bmp->db_agfree[i];
···747747748748 /* create/update an inode mark */749749 ret = inotify_update_watch(group, inode, mask);750750- if (unlikely(ret))751751- goto path_put_and_out;752752-753753-path_put_and_out:754750 path_put(&path);755751fput_and_out:756752 fput_light(filp, fput_needed);
···399399 * @cached_page: allocated but as yet unused page400400 * @lru_pvec: lru-buffering pagevec of caller401401 *402402- * Obtain @nr_pages locked page cache pages from the mapping @maping and402402+ * Obtain @nr_pages locked page cache pages from the mapping @mapping and403403 * starting at index @index.404404 *405405 * If a page is newly created, increment its refcount and add it to the···1281128112821282/*12831283 * Copy as much as we can into the pages and return the number of bytes which12841284- * were sucessfully copied. If a fault is encountered then clear the pages12841284+ * were successfully copied. If a fault is encountered then clear the pages12851285 * out to (ofs + bytes) and return the number of bytes which were copied.12861286 */12871287static inline size_t ntfs_copy_from_user(struct page **pages,
+1-1
fs/ntfs/logfile.c
···338338 * copy of the complete multi sector transfer deprotected page. On failure,339339 * *@wrp is undefined.340340 *341341- * Simillarly, if @lsn is not NULL, on succes *@lsn will be set to the current341341+ * Simillarly, if @lsn is not NULL, on success *@lsn will be set to the current342342 * logfile lsn according to this restart page. On failure, *@lsn is undefined.343343 *344344 * The following error codes are defined:
+1-1
fs/ocfs2/alloc.c
···23982398 *23992399 * The array is assumed to be large enough to hold an entire path (tree depth).24002400 *24012401- * Upon succesful return from this function:24012401+ * Upon successful return from this function:24022402 *24032403 * - The 'right_path' array will contain a path to the leaf block24042404 * whose range contains e_cpos.
+1-1
fs/ocfs2/blockcheck.c
···4747 * Calculate the bit offset in the hamming code buffer based on the bit's4848 * offset in the data buffer. Since the hamming code reserves all4949 * power-of-two bits for parity, the data bit number and the code bit5050- * number are offest by all the parity bits beforehand.5050+ * number are offset by all the parity bits beforehand.5151 *5252 * Recall that bit numbers in hamming code are 1-based. This function5353 * takes the 0-based data bit from the caller.
+1-1
fs/ocfs2/dlm/dlmmaster.c
···25862586 * is complete everywhere. if the target dies while this is25872587 * going on, some nodes could potentially see the target as the25882588 * master, so it is important that my recovery finds the migration25892589- * mle and sets the master to UNKNONWN. */25892589+ * mle and sets the master to UNKNOWN. */259025902591259125922592 /* wait for new node to assert master */
+1-1
fs/ocfs2/dlmglue.c
···18551855 * outstanding lock request, so a cancel convert is18561856 * required. We intentionally overwrite 'ret' - if the18571857 * cancel fails and the lock was granted, it's easier18581858- * to just bubble sucess back up to the user.18581858+ * to just bubble success back up to the user.18591859 */18601860 ret = ocfs2_flock_handle_signal(lockres, level);18611861 } else if (!ret && (level > lockres->l_level)) {
···24312431 * we gonna touch and whether we need to create new blocks.24322432 *24332433 * Normally the refcount blocks store these refcount should be24342434- * continguous also, so that we can get the number easily.24342434+ * contiguous also, so that we can get the number easily.24352435 * As for meta_ac, we will at most add split 2 refcount record and24362436 * 2 more refcount block, so just check it in a rough way.24372437 *
+1-1
fs/omfs/bitmap.c
···8585}86868787/*8888- * Tries to allocate exactly one block. Returns true if sucessful.8888+ * Tries to allocate exactly one block. Returns true if successful.8989 */9090int omfs_allocate_block(struct super_block *sb, u64 block)9191{
+1-1
fs/qnx4/bitmap.c
···67676868 while (total < size) {6969 if ((bh = sb_bread(sb, start + offset)) == NULL) {7070- printk("qnx4: I/O error in counting free blocks\n");7070+ printk(KERN_ERR "qnx4: I/O error in counting free blocks\n");7171 break;7272 }7373 count_bits(bh->b_data, size - total, &total_free);
···107107{108108 unsigned long phys;109109110110- QNX4DEBUG(("qnx4: qnx4_get_block inode=[%ld] iblock=[%ld]\n",inode->i_ino,iblock));110110+ QNX4DEBUG((KERN_INFO "qnx4: qnx4_get_block inode=[%ld] iblock=[%ld]\n",inode->i_ino,iblock));111111112112 phys = qnx4_block_map( inode, iblock );113113 if ( phys ) {···142142 // read next xtnt block.143143 bh = sb_bread(inode->i_sb, i_xblk - 1);144144 if ( !bh ) {145145- QNX4DEBUG(("qnx4: I/O error reading xtnt block [%ld])\n", i_xblk - 1));145145+ QNX4DEBUG((KERN_ERR "qnx4: I/O error reading xtnt block [%ld])\n", i_xblk - 1));146146 return -EIO;147147 }148148 xblk = (struct qnx4_xblk*)bh->b_data;149149 if ( memcmp( xblk->xblk_signature, "IamXblk", 7 ) ) {150150- QNX4DEBUG(("qnx4: block at %ld is not a valid xtnt\n", qnx4_inode->i_xblk));150150+ QNX4DEBUG((KERN_ERR "qnx4: block at %ld is not a valid xtnt\n", qnx4_inode->i_xblk));151151 return -EIO;152152 }153153 }···168168 brelse( bh );169169 }170170171171- QNX4DEBUG(("qnx4: mapping block %ld of inode %ld = %ld\n",iblock,inode->i_ino,block));171171+ QNX4DEBUG((KERN_INFO "qnx4: mapping block %ld of inode %ld = %ld\n",iblock,inode->i_ino,block));172172 return block;173173}174174···209209 if (*(qnx4_sb(sb)->sb->RootDir.di_fname) != '/') {210210 return "no qnx4 filesystem (no root dir).";211211 } else {212212- QNX4DEBUG(("QNX4 filesystem found on dev %s.\n", sb->s_id));212212+ QNX4DEBUG((KERN_NOTICE "QNX4 filesystem found on dev %s.\n", sb->s_id));213213 rd = le32_to_cpu(qnx4_sb(sb)->sb->RootDir.di_first_xtnt.xtnt_blk) - 1;214214 rl = le32_to_cpu(qnx4_sb(sb)->sb->RootDir.di_first_xtnt.xtnt_size);215215 for (j = 0; j < rl; j++) {···220220 for (i = 0; i < QNX4_INODES_PER_BLOCK; i++) {221221 rootdir = (struct qnx4_inode_entry *) (bh->b_data + i * QNX4_DIR_ENTRY_SIZE);222222 if (rootdir->di_fname != NULL) {223223- QNX4DEBUG(("Rootdir entry found : [%s]\n", rootdir->di_fname));223223+ QNX4DEBUG((KERN_INFO "rootdir entry found : [%s]\n", rootdir->di_fname));224224 if (!strncmp(rootdir->di_fname, QNX4_BMNAME, sizeof QNX4_BMNAME)) {225225 found = 1;226226 qnx4_sb(sb)->BitMap = kmalloc( sizeof( struct qnx4_inode_entry ), GFP_KERNEL );···265265 if we don't belong here... */266266 bh = sb_bread(s, 1);267267 if (!bh) {268268- printk("qnx4: unable to read the superblock\n");268268+ printk(KERN_ERR "qnx4: unable to read the superblock\n");269269 goto outnobh;270270 }271271 if ( le32_to_cpup((__le32*) bh->b_data) != QNX4_SUPER_MAGIC ) {272272 if (!silent)273273- printk("qnx4: wrong fsid in superblock.\n");273273+ printk(KERN_ERR "qnx4: wrong fsid in superblock.\n");274274 goto out;275275 }276276 s->s_op = &qnx4_sops;···284284 errmsg = qnx4_checkroot(s);285285 if (errmsg != NULL) {286286 if (!silent)287287- printk("qnx4: %s\n", errmsg);287287+ printk(KERN_ERR "qnx4: %s\n", errmsg);288288 goto out;289289 }290290291291 /* does root not have inode number QNX4_ROOT_INO ?? */292292 root = qnx4_iget(s, QNX4_ROOT_INO * QNX4_INODES_PER_BLOCK);293293 if (IS_ERR(root)) {294294- printk("qnx4: get inode failed\n");294294+ printk(KERN_ERR "qnx4: get inode failed\n");295295 ret = PTR_ERR(root);296296 goto out;297297 }···374374 qnx4_inode = qnx4_raw_inode(inode);375375 inode->i_mode = 0;376376377377- QNX4DEBUG(("Reading inode : [%d]\n", ino));377377+ QNX4DEBUG((KERN_INFO "reading inode : [%d]\n", ino));378378 if (!ino) {379379 printk(KERN_ERR "qnx4: bad inode number on dev %s: %lu is "380380 "out of range\n",···385385 block = ino / QNX4_INODES_PER_BLOCK;386386387387 if (!(bh = sb_bread(sb, block))) {388388- printk("qnx4: major problem: unable to read inode from dev "388388+ printk(KERN_ERR "qnx4: major problem: unable to read inode from dev "389389 "%s\n", sb->s_id);390390 iget_failed(inode);391391 return ERR_PTR(-EIO);···499499 return err;500500 }501501502502- printk("QNX4 filesystem 0.2.3 registered.\n");502502+ printk(KERN_INFO "QNX4 filesystem 0.2.3 registered.\n");503503 return 0;504504}505505
+3-3
fs/qnx4/namei.c
···3030 int namelen, thislen;31313232 if (bh == NULL) {3333- printk("qnx4: matching unassigned buffer !\n");3333+ printk(KERN_WARNING "qnx4: matching unassigned buffer !\n");3434 return 0;3535 }3636 de = (struct qnx4_inode_entry *) (bh->b_data + *offset);···66666767 *res_dir = NULL;6868 if (!dir->i_sb) {6969- printk("qnx4: no superblock on dir.\n");6969+ printk(KERN_WARNING "qnx4: no superblock on dir.\n");7070 return NULL;7171 }7272 bh = NULL;···124124 foundinode = qnx4_iget(dir->i_sb, ino);125125 if (IS_ERR(foundinode)) {126126 unlock_kernel();127127- QNX4DEBUG(("qnx4: lookup->iget -> error %ld\n",127127+ QNX4DEBUG((KERN_ERR "qnx4: lookup->iget -> error %ld\n",128128 PTR_ERR(foundinode)));129129 return ERR_CAST(foundinode);130130 }
+1-1
fs/reiserfs/fix_node.c
···834834 RFALSE(buffer_dirty(new_bh) ||835835 buffer_journaled(new_bh) ||836836 buffer_journal_dirty(new_bh),837837- "PAP-8140: journlaled or dirty buffer %b for the new block",837837+ "PAP-8140: journaled or dirty buffer %b for the new block",838838 new_bh);839839840840 /* Put empty buffers into the array. */
+1-1
fs/ubifs/recovery.c
···2323/*2424 * This file implements functions needed to recover from unclean un-mounts.2525 * When UBIFS is mounted, it checks a flag on the master node to determine if2626- * an un-mount was completed sucessfully. If not, the process of mounting2626+ * an un-mount was completed successfully. If not, the process of mounting2727 * incorparates additional checking and fixing of on-flash data structures.2828 * UBIFS always cleans away all remnants of an unclean un-mount, so that2929 * errors do not accumulate. However UBIFS defers recovery if it is mounted
+1-1
fs/xfs/quota/xfs_dquot.h
···9898#define dq_flags q_lists.dqm_flags9999100100/*101101- * Lock hierachy for q_qlock:101101+ * Lock hierarchy for q_qlock:102102 * XFS_QLOCK_NORMAL is the implicit default,103103 * XFS_QLOCK_NESTED is the dquot with the higher id in xfs_dqlock2104104 */
···631631 * these are provided for both review and as a porting632632 * help for the C library version.633633*634634- * Last chance: are any of these important enought to634634+ * Last chance: are any of these important enough to635635 * enable by default?636636 */637637#ifdef __ARCH_WANT_SYSCALL_NO_AT
+1-1
include/linux/cciss_ioctl.h
···3939#ifndef CCISS_CMD_H4040// This defines are duplicated in cciss_cmd.h in the driver directory 41414242-//general boundary defintions4242+//general boundary definitions4343#define SENSEINFOBYTES 32//note that this value may vary between host implementations44444545//Command Status value
+1-1
include/linux/chio.h
···2121 * query vendor-specific element types2222 *2323 * accessing elements works by specifing type and unit of the element.2424- * for eample, storage elements are addressed with type = CHET_ST and2424+ * for example, storage elements are addressed with type = CHET_ST and2525 * unit = 0 .. cp_nslots-12626 *2727 */
+1-1
include/linux/dm-log-userspace.h
···363363 * various request types above. The remaining 24-bits are currently364364 * set to zero and are reserved for future use and compatibility concerns.365365 *366366- * User-space should always use DM_ULOG_REQUEST_TYPE to aquire the366366+ * User-space should always use DM_ULOG_REQUEST_TYPE to acquire the367367 * request type from the 'request_type' field to maintain forward compatibility.368368 */369369#define DM_ULOG_REQUEST_MASK 0xFF
+1-1
include/linux/in6.h
···113113#define IPV6_FLOWINFO_FLOWLABEL 0x000fffff114114#define IPV6_FLOWINFO_PRIORITY 0x0ff00000115115116116-/* These defintions are obsolete */116116+/* These definitions are obsolete */117117#define IPV6_PRIORITY_UNCHARACTERIZED 0x0000118118#define IPV6_PRIORITY_FILLER 0x0100119119#define IPV6_PRIORITY_UNATTENDED 0x0200
+1-1
include/linux/irq.h
···282282283283/*284284 * Built-in IRQ handlers for various IRQ types,285285- * callable via desc->chip->handle_irq()285285+ * callable via desc->handle_irq()286286 */287287extern void handle_level_irq(unsigned int irq, struct irq_desc *desc);288288extern void handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc);
+2-2
include/linux/mfd/ezx-pcap.h
···4545#define PCAP_CLEAR_INTERRUPT_REGISTER 0x01ffffff4646#define PCAP_MASK_ALL_INTERRUPT 0x01ffffff47474848-/* registers acessible by both pcap ports */4848+/* registers accessible by both pcap ports */4949#define PCAP_REG_ISR 0x0 /* Interrupt Status */5050#define PCAP_REG_MSR 0x1 /* Interrupt Mask */5151#define PCAP_REG_PSTAT 0x2 /* Processor Status */···6767#define PCAP_REG_VENDOR_TEST1 0x1e6868#define PCAP_REG_VENDOR_TEST2 0x1f69697070-/* registers acessible by pcap port 1 only (a1200, e2 & e6) */7070+/* registers accessible by pcap port 1 only (a1200, e2 & e6) */7171#define PCAP_REG_INT_SEL 0x3 /* Interrupt Select */7272#define PCAP_REG_SWCTRL 0x4 /* Switching Regulator Control */7373#define PCAP_REG_VREG1 0x5 /* Regulator Bank 1 Control */
+1-1
include/linux/pktcdvd.h
···30303131/*3232 * use drive write caching -- we need deferred error handling to be3333- * able to sucessfully recover with this option (drive will return good3333+ * able to successfully recover with this option (drive will return good3434 * status as soon as the cdb is validated).3535 */3636#if defined(CONFIG_CDROM_PKTCDVD_WCACHE)
···1515 * Some hardware works well with requests at spi_transfer scope:1616 *1717 * - Drivers leveraging smarter hardware, with fifos or DMA; or for half1818- * duplex (MicroWire) controllers. Provide chipslect() and txrx_bufs(),1818+ * duplex (MicroWire) controllers. Provide chipselect() and txrx_bufs(),1919 * and custom setup()/cleanup() methods.2020 */2121
+5-5
include/linux/sysctl.h
···9898 KERN_VERSION=4, /* string: compile time info */9999 KERN_SECUREMASK=5, /* struct: maximum rights mask */100100 KERN_PROF=6, /* table: profiling information */101101- KERN_NODENAME=7,102102- KERN_DOMAINNAME=8,101101+ KERN_NODENAME=7, /* string: hostname */102102+ KERN_DOMAINNAME=8, /* string: domainname */103103104104 KERN_PANIC=15, /* int: panic timeout */105105 KERN_REALROOTDEV=16, /* real root device to mount after initrd */···111111 KERN_PPC_HTABRECLAIM=25, /* turn htab reclaimation on/off on PPC */112112 KERN_PPC_ZEROPAGED=26, /* turn idle page zeroing on/off on PPC */113113 KERN_PPC_POWERSAVE_NAP=27, /* use nap mode for power saving */114114- KERN_MODPROBE=28,115115- KERN_SG_BIG_BUFF=29,114114+ KERN_MODPROBE=28, /* string: modprobe path */115115+ KERN_SG_BIG_BUFF=29, /* int: sg driver reserved buffer size */116116 KERN_ACCT=30, /* BSD process accounting parameters */117117 KERN_PPC_L2CR=31, /* l2cr register on PPC */118118···159159 KERN_ACPI_VIDEO_FLAGS=71, /* int: flags for setting up video after ACPI sleep */160160 KERN_IA64_UNALIGNED=72, /* int: ia64 unaligned userland trap enable */161161 KERN_COMPAT_LOG=73, /* int: print compat layer messages */162162- KERN_MAX_LOCK_DEPTH=74,162162+ KERN_MAX_LOCK_DEPTH=74, /* int: rtmutex's maximum lock depth */163163 KERN_NMI_WATCHDOG=75, /* int: enable/disable nmi watchdog */164164 KERN_PANIC_ON_NMI=76, /* int: whether we will panic on an unrecovered */165165};
+1-1
include/linux/usb/wusb.h
···7474 * WUSB defines that CHIDs, CDIDs and CKs are a 16 byte string of7575 * data. In order to avoid confusion and enforce types, we wrap it.7676 *7777- * Make it packed, as we use it in some hw defintions.7777+ * Make it packed, as we use it in some hw definitions.7878 */7979struct wusb_ckhdid {8080 u8 data[16];
+1-1
include/linux/videodev2.h
···490490 * you do, leave them untouched.491491 * Inluding less markers will make the492492 * resulting code smaller, but there will493493- * be fewer aplications which can read it.493493+ * be fewer applications which can read it.494494 * The presence of the APP and COM marker495495 * is influenced by APP_len and COM_len496496 * ONLY, not by this property! */
+1-1
include/net/sctp/structs.h
···987987 int init_sent_count;988988989989 /* state : The current state of this destination,990990- * : i.e. SCTP_ACTIVE, SCTP_INACTIVE, SCTP_UNKOWN.990990+ * : i.e. SCTP_ACTIVE, SCTP_INACTIVE, SCTP_UNKNOWN.991991 */992992 int state;993993
+1-1
include/net/tcp.h
···12601260 skb_queue_walk_from_safe(&(sk)->sk_write_queue, skb, tmp)1261126112621262/* This function calculates a "timeout" which is equivalent to the timeout of a12631263- * TCP connection after "boundary" unsucessful, exponentially backed-off12631263+ * TCP connection after "boundary" unsuccessful, exponentially backed-off12641264 * retransmissions with an initial RTO of TCP_RTO_MIN.12651265 */12661266static inline bool retransmits_timed_out(const struct sock *sk,
+1-1
include/net/wimax.h
···7979 * drivers have to only report state changes due to external8080 * conditions.8181 *8282- * All API operations are 'atomic', serialized thorough a mutex in the8282+ * All API operations are 'atomic', serialized through a mutex in the8383 * `struct wimax_dev`.8484 *8585 * EXPORTING TO USER SPACE THROUGH GENERIC NETLINK
+1-1
include/sound/ac97_codec.h
···593593594594struct ac97_quirk {595595 unsigned short subvendor; /* PCI subsystem vendor id */596596- unsigned short subdevice; /* PCI sybsystem device id */596596+ unsigned short subdevice; /* PCI subsystem device id */597597 unsigned short mask; /* device id bit mask, 0 = accept all */598598 unsigned int codec_id; /* codec id (if any), 0 = accept all */599599 const char *name; /* name shown as info */
+1-1
include/sound/wm8993.h
···3636 unsigned int micbias1_lvl:1;3737 unsigned int micbias2_lvl:1;38383939- /* Jack detect threashold levels, see datasheet for values */3939+ /* Jack detect threshold levels, see datasheet for values */4040 unsigned int jd_scthr:2;4141 unsigned int jd_thr:2;4242};
···220220 /*221221 * If we are seeing only the odd spurious IRQ caused by222222 * bus asynchronicity then don't eventually trigger an error,223223- * otherwise the couter becomes a doomsday timer for otherwise223223+ * otherwise the counter becomes a doomsday timer for otherwise224224 * working systems225225 */226226 if (time_after(jiffies, desc->last_unhandled + HZ/10))
+2-2
kernel/perf_event.c
···476476 if (!task) {477477 /*478478 * Per cpu events are removed via an smp call and479479- * the removal is always sucessful.479479+ * the removal is always successful.480480 */481481 smp_call_function_single(event->cpu,482482 __perf_event_remove_from_context,···845845 if (!task) {846846 /*847847 * Per cpu events are installed via an smp call and848848- * the install is always sucessful.848848+ * the install is always successful.849849 */850850 smp_call_function_single(cpu, __perf_install_in_context,851851 event, 1);
+1-1
kernel/time/clocksource.c
···580580 * @count: length of buffer581581 *582582 * Takes input from sysfs interface for manually overriding the default583583- * clocksource selction.583583+ * clocksource selection.584584 */585585static ssize_t sysfs_override_clocksource(struct sys_device *dev,586586 struct sysdev_attribute *attr,
+1-1
lib/Kconfig.debug
···105105 bool "Enable full Section mismatch analysis"106106 depends on UNDEFINED107107 # This option is on purpose disabled for now.108108- # It will be enabled when we are down to a resonable number108108+ # It will be enabled when we are down to a reasonable number109109 # of section mismatch warnings (< 10 for an allyesconfig build)110110 help111111 The section mismatch analysis checks if there are illegal
+1-1
lib/decompress_bunzip2.c
···299299 again when using them (during symbol decoding).*/300300 base = hufGroup->base-1;301301 limit = hufGroup->limit-1;302302- /* Calculate permute[]. Concurently, initialize302302+ /* Calculate permute[]. Concurrently, initialize303303 * temp[] and limit[]. */304304 pp = 0;305305 for (i = minLen; i <= maxLen; i++) {
+1-1
lib/dma-debug.c
···259259 * times. Without a hardware IOMMU this results in the260260 * same device addresses being put into the dma-debug261261 * hash multiple times too. This can result in false262262- * positives being reported. Therfore we implement a262262+ * positives being reported. Therefore we implement a263263 * best-fit algorithm here which returns the entry from264264 * the hash which fits best to the reference value265265 * instead of the first-fit.
+2-2
lib/idr.c
···281281/**282282 * idr_get_new_above - allocate new idr entry above or equal to a start id283283 * @idp: idr handle284284- * @ptr: pointer you want associated with the ide284284+ * @ptr: pointer you want associated with the id285285 * @start_id: id to start search at286286 * @id: pointer to the allocated handle287287 *···313313/**314314 * idr_get_new - allocate new idr entry315315 * @idp: idr handle316316- * @ptr: pointer you want associated with the ide316316+ * @ptr: pointer you want associated with the id317317 * @id: pointer to the allocated handle318318 *319319 * This is the allocate id function. It should be called with any
+1-1
lib/swiotlb.c
···485485486486 /*487487 * Return the buffer to the free list by setting the corresponding488488- * entries to indicate the number of contigous entries available.488488+ * entries to indicate the number of contiguous entries available.489489 * While returning the entries to the free list, we merge the entries490490 * with slots below and above the pool being returned.491491 */
+1-1
mm/filemap.c
···1844184418451845/*18461846 * Copy as much as we can into the page and return the number of bytes which18471847- * were sucessfully copied. If a fault is encountered then return the number of18471847+ * were successfully copied. If a fault is encountered then return the number of18481848 * bytes which were copied.18491849 */18501850size_t iov_iter_copy_from_user_atomic(struct page *page,
+2-2
mm/kmemleak.c
···10501050 unsigned long flags;1051105110521052 /*10531053- * Once the object->lock is aquired, the corresponding memory block10541054- * cannot be freed (the same lock is aquired in delete_object).10531053+ * Once the object->lock is acquired, the corresponding memory block10541054+ * cannot be freed (the same lock is acquired in delete_object).10551055 */10561056 spin_lock_irqsave(&object->lock, flags);10571057 if (object->flags & OBJECT_NO_SCAN)
+3-3
mm/memcontrol.c
···209209 int prev_priority; /* for recording reclaim priority */210210211211 /*212212- * While reclaiming in a hiearchy, we cache the last child we212212+ * While reclaiming in a hierarchy, we cache the last child we213213 * reclaimed from.214214 */215215 int last_scanned_child;···17201720/*17211721 * While swap-in, try_charge -> commit or cancel, the page is locked.17221722 * And when try_charge() successfully returns, one refcnt to memcg without17231723- * struct page_cgroup is aquired. This refcnt will be cumsumed by17231723+ * struct page_cgroup is acquired. This refcnt will be consumed by17241724 * "commit()" or removed by "cancel()"17251725 */17261726int mem_cgroup_try_charge_swapin(struct mm_struct *mm,···2466246624672467 cgroup_lock();24682468 /*24692469- * If parent's use_hiearchy is set, we can't make any modifications24692469+ * If parent's use_hierarchy is set, we can't make any modifications24702470 * in the child subtrees. If it is unset, then the change can24712471 * occur, provided the current cgroup has no children.24722472 *
+1-1
mm/memory-failure.c
···174174 list_for_each_entry_safe (tk, next, to_kill, nd) {175175 if (doit) {176176 /*177177- * In case something went wrong with munmaping177177+ * In case something went wrong with munmapping178178 * make sure the process doesn't catch the179179 * signal and then access the memory. Just kill it.180180 * the signal handlers
+1-1
mm/truncate.c
···490490 * Any pages which are found to be mapped into pagetables are unmapped prior to491491 * invalidation.492492 *493493- * Returns -EIO if any pages could not be invalidated.493493+ * Returns -EBUSY if any pages could not be invalidated.494494 */495495int invalidate_inode_pages2(struct address_space *mapping)496496{
+2-2
net/bluetooth/bnep/core.c
···7878static void __bnep_link_session(struct bnep_session *s)7979{8080 /* It's safe to call __module_get() here because sessions are added8181- by the socket layer which has to hold the refference to this module.8181+ by the socket layer which has to hold the reference to this module.8282 */8383 __module_get(THIS_MODULE);8484 list_add(&s->list, &bnep_session_list);···629629 s = __bnep_get_session(req->dst);630630 if (s) {631631 /* Wakeup user-space which is polling for socket errors.632632- * This is temporary hack untill we have shutdown in L2CAP */632632+ * This is temporary hack until we have shutdown in L2CAP */633633 s->sock->sk->sk_err = EUNATCH;634634635635 /* Kill session thread */
+1-1
net/ipv4/netfilter/ipt_ECN.c
···5050 struct tcphdr _tcph, *tcph;5151 __be16 oldval;52525353- /* Not enought header? */5353+ /* Not enough header? */5454 tcph = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_tcph), &_tcph);5555 if (!tcph)5656 return false;
+7-7
net/irda/irlap.c
···450450451451 /* Check if we are in the right state for disconnecting */452452 switch (self->state) {453453- case LAP_XMIT_P: /* FALLTROUGH */454454- case LAP_XMIT_S: /* FALLTROUGH */455455- case LAP_CONN: /* FALLTROUGH */456456- case LAP_RESET_WAIT: /* FALLTROUGH */453453+ case LAP_XMIT_P: /* FALLTHROUGH */454454+ case LAP_XMIT_S: /* FALLTHROUGH */455455+ case LAP_CONN: /* FALLTHROUGH */456456+ case LAP_RESET_WAIT: /* FALLTHROUGH */457457 case LAP_RESET_CHECK:458458 irlap_do_event(self, DISCONNECT_REQUEST, NULL, NULL);459459 break;···485485 IRDA_DEBUG(1, "%s(), Sending reset request!\n", __func__);486486 irlap_do_event(self, RESET_REQUEST, NULL, NULL);487487 break;488488- case LAP_NO_RESPONSE: /* FALLTROUGH */489489- case LAP_DISC_INDICATION: /* FALLTROUGH */490490- case LAP_FOUND_NONE: /* FALLTROUGH */488488+ case LAP_NO_RESPONSE: /* FALLTHROUGH */489489+ case LAP_DISC_INDICATION: /* FALLTHROUGH */490490+ case LAP_FOUND_NONE: /* FALLTHROUGH */491491 case LAP_MEDIA_BUSY:492492 irlmp_link_disconnect_indication(self->notify.instance, self,493493 reason, NULL);
+1-1
net/irda/irlap_event.c
···17411741 * Function irlap_state_xmit_s (event, skb, info)17421742 *17431743 * XMIT_S, The secondary station has been given the right to transmit,17441744- * and we therefor do not expect to receive any transmissions from other17441744+ * and we therefore do not expect to receive any transmissions from other17451745 * stations.17461746 */17471747static int irlap_state_xmit_s(struct irlap_cb *self, IRLAP_EVENT event,
+2-2
net/irda/irlmp.c
···105105106106 init_timer(&irlmp->discovery_timer);107107108108- /* Do discovery every 3 seconds, conditionaly */108108+ /* Do discovery every 3 seconds, conditionally */109109 if (sysctl_discovery)110110 irlmp_start_discovery_timer(irlmp,111111 sysctl_discovery_timeout*HZ);···18421842 reason = LM_CONNECT_FAILURE;18431843 break;18441844 default:18451845- IRDA_DEBUG(1, "%s(), Unknow IrLAP disconnect reason %d!\n",18451845+ IRDA_DEBUG(1, "%s(), Unknown IrLAP disconnect reason %d!\n",18461846 __func__, lap_reason);18471847 reason = LM_LAP_DISCONNECT;18481848 break;
+2-2
net/mac80211/mesh_pathtbl.c
···244244 * @addr: destination address of the path (ETH_ALEN length)245245 * @sdata: local subif246246 *247247- * Returns: 0 on sucess247247+ * Returns: 0 on success248248 *249249 * State: the initial state of the new path is set to 0250250 */···530530 * @addr: dst address (ETH_ALEN length)531531 * @sdata: local subif532532 *533533- * Returns: 0 if succesful533533+ * Returns: 0 if successful534534 */535535int mesh_path_del(u8 *addr, struct ieee80211_sub_if_data *sdata)536536{
+1-1
net/netlabel/netlabel_domainhash.c
···682682 * buckets and @skip_chain entries. For each entry in the table call683683 * @callback, if @callback returns a negative value stop 'walking' through the684684 * table and return. Updates the values in @skip_bkt and @skip_chain on685685- * return. Returns zero on succcess, negative values on failure.685685+ * return. Returns zero on success, negative values on failure.686686 *687687 */688688int netlbl_domhsh_walk(u32 *skip_bkt,
+1-1
net/sched/act_api.c
···598598 goto errout;599599600600 /* compat_mode being true specifies a call that is supposed601601- * to add additional backward compatiblity statistic TLVs.601601+ * to add additional backward compatibility statistic TLVs.602602 */603603 if (compat_mode) {604604 if (a->type == TCA_OLD_COMPAT)
+1-1
net/sctp/sm_sideeffect.c
···718718719719 if (sctp_style(sk, TCP)) {720720 /* Change the sk->sk_state of a TCP-style socket that has721721- * sucessfully completed a connect() call.721721+ * successfully completed a connect() call.722722 */723723 if (sctp_state(asoc, ESTABLISHED) && sctp_sstate(sk, CLOSED))724724 sk->sk_state = SCTP_SS_ESTABLISHED;
+1-1
net/sctp/sm_statefuns.c
···35723572 * To do this properly, we'll set the destination address of the chunk35733573 * and at the transmit time, will try look up the transport to use.35743574 * Since ASCONFs may be bundled, the correct transport may not be35753575- * created untill we process the entire packet, thus this workaround.35753575+ * created until we process the entire packet, thus this workaround.35763576 */35773577 asconf_ack->dest = chunk->source;35783578 sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, SCTP_CHUNK(asconf_ack));
+1-1
net/sunrpc/xprtrdma/svc_rdma_sendto.c
···5454 * Assumptions:5555 * - head[0] is physically contiguous.5656 * - tail[0] is physically contiguous.5757- * - pages[] is not physically or virtually contigous and consists of5757+ * - pages[] is not physically or virtually contiguous and consists of5858 * PAGE_SIZE elements.5959 *6060 * Output:
+1-1
net/wimax/op-reset.c
···6262 * Called when wanting to reset the device for any reason. Device is6363 * taken back to power on status.6464 *6565- * This call blocks; on succesful return, the device has completed the6565+ * This call blocks; on successful return, the device has completed the6666 * reset process and is ready to operate.6767 */6868int wimax_reset(struct wimax_dev *wimax_dev)
-3
samples/Kconfig
···11-# samples/Kconfig22-31menuconfig SAMPLES42 bool "Sample kernel code"53 help···4547 This builds kernel hardware breakpoint example modules.46484749endif # SAMPLES4848-
+1-1
scripts/kconfig/mconf.c
···213213 "to modify that configuration.\n"214214 "\n"215215 "If you are uncertain, then you have probably never used alternate\n"216216- "configuration files. You should therefor leave this blank to abort.\n"),216216+ "configuration files. You should therefore leave this blank to abort.\n"),217217save_config_text[] = N_(218218 "Enter a filename to which this configuration should be saved "219219 "as an alternate. Leave blank to abort."),
+1-1
security/selinux/netlabel.c
···204204 *205205 * Description206206 * Call the NetLabel mechanism to set the label of a packet using @sid.207207- * Returns zero on auccess, negative values on failure.207207+ * Returns zero on success, negative values on failure.208208 *209209 */210210int selinux_netlbl_skbuff_setsid(struct sk_buff *skb,
···11-# sound/Config.in22-#33-41menuconfig SOUND52 tristate "Sound card support"63 depends on HAS_IOMEM···5558 Please read Documentation/feature-removal-schedule.txt for5659 details.57605858- If unusre, say Y.6161+ If unsure, say Y.59626063source "sound/oss/dmasound/Kconfig"6164···133136 sound subsystem and other function drivers completely unrelated to134137 sound although they're sharing the AC97 bus. Concerned drivers135138 should "select" this.136136-
···2626//2727//2828// The purpose of this code is very simple: make it possible to tranfser2929-// the samples 'as they are' with no alteration from a PCMreader SCB (DMA from host)3030-// to any other SCB. This is useful for AC3 throug SPDIF. SRC (source rate converters) 3131-// task always alters the samples in some how, however it's from 48khz -> 48khz. The3232-// alterations are not audible, but AC3 wont work. 2929+// the samples 'as they are' with no alteration from a PCMreader3030+// SCB (DMA from host) to any other SCB. This is useful for AC3 through SPDIF.3131+// SRC (source rate converters) task always alters the samples in somehow,3232+// however it's from 48khz -> 48khz.3333+// The alterations are not audible, but AC3 wont work. 3334//3435// ...3536// |
+1-1
sound/pci/emu10k1/emu10k1x.c
···184184 * The hardware has 3 channels for playback and 1 for capture.185185 * - channel 0 is the front channel186186 * - channel 1 is the rear channel187187- * - channel 2 is the center/lfe chanel187187+ * - channel 2 is the center/lfe channel188188 * Volume is controlled by the AC97 for the front and rear channels by189189 * the PCM Playback Volume, Sigmatel Surround Playback Volume and 190190 * Surround Playback Volume. The Sigmatel 4-Speaker Stereo switch affects
+1-1
sound/pci/hda/patch_cirrus.c
···947947 coef |= 0x0500; /* DMIC2 enable 2 channels, disable GPIO1 */948948 if (is_active_pin(codec, CS_DMIC1_PIN_NID))949949 coef |= 0x1800; /* DMIC1 enable 2 channels, disable GPIO0 950950- * No effect if SPDIF_OUT2 is slected in 950950+ * No effect if SPDIF_OUT2 is selected in 951951 * IDX_SPDIF_CTL.952952 */953953 cs_vendor_coef_set(codec, IDX_ADC_CFG, coef);
+1-1
sound/pci/hda/patch_cmedia.c
···66666767 struct hda_pcm pcm_rec[2]; /* PCM information */68686969- /* pin deafault configuration */6969+ /* pin default configuration */7070 hda_nid_t pin_nid[NUM_PINS];7171 unsigned int def_conf[NUM_PINS];7272 unsigned int pin_def_confs;
···380380 * inputs) are fed from Xilinx.381381 *382382 * I even checked traces on board and coded a support in driver for383383- * an alternative possiblity - the unused I2S ICE output channels383383+ * an alternative possibility - the unused I2S ICE output channels384384 * switched to HW-IN/SPDIF-IN and providing the monitoring signal to385385 * the DAC - to no avail. The I2S outputs seem to be unconnected.386386 *
···353353 * @dev: device pointer354354 *355355 * Allocate a special sound device by minor number from the sound356356- * subsystem. The allocated number is returned on succes. On failure356356+ * subsystem. The allocated number is returned on success. On failure357357 * a negative error code is returned.358358 */359359