Merge git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial

* git://git.kernel.org/pub/scm/linux/kernel/git/bunk/trivial: (79 commits)
Jesper Juhl is the new trivial patches maintainer
Documentation: mention email-clients.txt in SubmittingPatches
fs/binfmt_elf.c: spello fix
do_invalidatepage() comment typo fix
Documentation/filesystems/porting fixes
typo fixes in net/core/net_namespace.c
typo fix in net/rfkill/rfkill.c
typo fixes in net/sctp/sm_statefuns.c
lib/: Spelling fixes
kernel/: Spelling fixes
include/scsi/: Spelling fixes
include/linux/: Spelling fixes
include/asm-m68knommu/: Spelling fixes
include/asm-frv/: Spelling fixes
fs/: Spelling fixes
drivers/watchdog/: Spelling fixes
drivers/video/: Spelling fixes
drivers/ssb/: Spelling fixes
drivers/serial/: Spelling fixes
drivers/scsi/: Spelling fixes
...

+381 -441
+3 -4
CREDITS
··· 508 S: Germany 509 510 N: Adrian Bunk 511 - E: bunk@stusta.de 512 P: 1024D/4F12B400 B29C E71E FE19 6755 5C8A 84D4 99FC EA98 4F12 B400 513 D: misc kernel hacking and testing 514 - S: Grasmeierstrasse 11 515 - S: 80805 Muenchen 516 - S: Germany 517 518 N: Ray Burr 519 E: ryb@nightmare.com ··· 1119 S: 1150 Ringwood Court 1120 S: San Jose, California 95131 1121 S: USA 1122 1123 N: Fernando Fuganti 1124 E: fuganti@conectiva.com.br
··· 508 S: Germany 509 510 N: Adrian Bunk 511 P: 1024D/4F12B400 B29C E71E FE19 6755 5C8A 84D4 99FC EA98 4F12 B400 512 D: misc kernel hacking and testing 513 514 N: Ray Burr 515 E: ryb@nightmare.com ··· 1123 S: 1150 Ringwood Court 1124 S: San Jose, California 95131 1125 S: USA 1126 + 1127 + N: Adam Fritzler 1128 + E: mid@zigamorph.net 1129 1130 N: Fernando Fuganti 1131 E: fuganti@conectiva.com.br
+1 -3
Documentation/00-INDEX
··· 154 - request_firmware() hotplug interface info. 155 floppy.txt 156 - notes and driver options for the floppy disk driver. 157 - fujitsu/ 158 - Fujitsu FR-V Linux documentation. 159 gpio.txt 160 - overview of GPIO (General Purpose Input/Output) access conventions. ··· 364 - a description of shared subtrees for namespaces. 365 smart-config.txt 366 - description of the Smart Config makefile feature. 367 - smp.txt 368 - - a few notes on symmetric multi-processing. 369 sony-laptop.txt 370 - Sony Notebook Control Driver (SNC) Readme. 371 sonypi.txt
··· 154 - request_firmware() hotplug interface info. 155 floppy.txt 156 - notes and driver options for the floppy disk driver. 157 + frv/ 158 - Fujitsu FR-V Linux documentation. 159 gpio.txt 160 - overview of GPIO (General Purpose Input/Output) access conventions. ··· 364 - a description of shared subtrees for namespaces. 365 smart-config.txt 366 - description of the Smart Config makefile feature. 367 sony-laptop.txt 368 - Sony Notebook Control Driver (SNC) Readme. 369 sonypi.txt
+11 -11
Documentation/BUG-HUNTING
··· 53 54 [Sat Mar 2 10:32:33 PST 1996 KERNEL_BUG-HOWTO lm@sgi.com (Larry McVoy)] 55 56 - This is how to track down a bug if you know nothing about kernel hacking. 57 It's a brute force approach but it works pretty well. 58 59 You need: ··· 66 67 . Rebuild a revision that you believe works, install, and verify that. 68 . Do a binary search over the kernels to figure out which one 69 - introduced the bug. I.e., suppose 1.3.28 didn't have the bug, but 70 you know that 1.3.69 does. Pick a kernel in the middle and build 71 that, like 1.3.50. Build & test; if it works, pick the mid point 72 between .50 and .69, else the mid point between .28 and .50. 73 . You'll narrow it down to the kernel that introduced the bug. You 74 - can probably do better than this but it gets tricky. 75 76 . Narrow it down to a subdirectory 77 ··· 81 directories: 82 83 Copy the non-working directory next to the working directory 84 - as "dir.63". 85 One directory at time, try moving the working directory to 86 - "dir.62" and mv dir.63 dir"time, try 87 88 mv dir dir.62 89 mv dir.63 dir 90 find dir -name '*.[oa]' -print | xargs rm -f 91 92 And then rebuild and retest. Assuming that all related 93 - changes were contained in the sub directory, this should 94 - isolate the change to a directory. 95 96 Problems: changes in header files may have occurred; I've 97 - found in my case that they were self explanatory - you may 98 or may not want to give up when that happens. 99 100 . Narrow it down to a file 101 102 - You can apply the same technique to each file in the directory, 103 - hoping that the changes in that file are self contained. 104 - 105 . Narrow it down to a routine 106 107 - You can take the old file and the new file and manually create ··· 130 that makes the difference. 131 132 Finally, you take all the info that you have, kernel revisions, bug 133 - description, the extent to which you have narrowed it down, and pass 134 that off to whomever you believe is the maintainer of that section. 135 A post to linux.dev.kernel isn't such a bad idea if you've done some 136 work to narrow it down.
··· 53 54 [Sat Mar 2 10:32:33 PST 1996 KERNEL_BUG-HOWTO lm@sgi.com (Larry McVoy)] 55 56 + This is how to track down a bug if you know nothing about kernel hacking. 57 It's a brute force approach but it works pretty well. 58 59 You need: ··· 66 67 . Rebuild a revision that you believe works, install, and verify that. 68 . Do a binary search over the kernels to figure out which one 69 + introduced the bug. I.e., suppose 1.3.28 didn't have the bug, but 70 you know that 1.3.69 does. Pick a kernel in the middle and build 71 that, like 1.3.50. Build & test; if it works, pick the mid point 72 between .50 and .69, else the mid point between .28 and .50. 73 . You'll narrow it down to the kernel that introduced the bug. You 74 + can probably do better than this but it gets tricky. 75 76 . Narrow it down to a subdirectory 77 ··· 81 directories: 82 83 Copy the non-working directory next to the working directory 84 + as "dir.63". 85 One directory at time, try moving the working directory to 86 + "dir.62" and mv dir.63 dir"time, try 87 88 mv dir dir.62 89 mv dir.63 dir 90 find dir -name '*.[oa]' -print | xargs rm -f 91 92 And then rebuild and retest. Assuming that all related 93 + changes were contained in the sub directory, this should 94 + isolate the change to a directory. 95 96 Problems: changes in header files may have occurred; I've 97 + found in my case that they were self explanatory - you may 98 or may not want to give up when that happens. 99 100 . Narrow it down to a file 101 102 - You can apply the same technique to each file in the directory, 103 + hoping that the changes in that file are self contained. 104 + 105 . Narrow it down to a routine 106 107 - You can take the old file and the new file and manually create ··· 130 that makes the difference. 131 132 Finally, you take all the info that you have, kernel revisions, bug 133 + description, the extent to which you have narrowed it down, and pass 134 that off to whomever you believe is the maintainer of that section. 135 A post to linux.dev.kernel isn't such a bad idea if you've done some 136 work to narrow it down.
+2 -14
Documentation/SubmittingPatches
··· 220 Exception: If your mailer is mangling patches then someone may ask 221 you to re-send them using MIME. 222 223 - 224 - WARNING: Some mailers like Mozilla send your messages with 225 - ---- message header ---- 226 - Content-Type: text/plain; charset=us-ascii; format=flowed 227 - ---- message header ---- 228 - The problem is that "format=flowed" makes some of the mailers 229 - on receiving side to replace TABs with spaces and do similar 230 - changes. Thus the patches from you can look corrupted. 231 - 232 - To fix this just make your mozilla defaults/pref/mailnews.js file to look like: 233 - pref("mailnews.send_plaintext_flowed", false); // RFC 2646======= 234 - pref("mailnews.display.disable_format_flowed_support", true); 235 - 236 - 237 238 8) E-mail size. 239
··· 220 Exception: If your mailer is mangling patches then someone may ask 221 you to re-send them using MIME. 222 223 + See Documentation/email-clients.txt for hints about configuring 224 + your e-mail client so that it sends your patches untouched. 225 226 8) E-mail size. 227
+1 -1
Documentation/arm/Sharp-LH/IOBarrier
··· 32 only needs occurs after the SMC IO write cycle. The routines that 33 implement this work-around make an additional concession which is to 34 disable interrupts during the IO sequence. Other hardware devices 35 - (the LogicPD CPLD) have registers in the same the physical memory 36 region as the SMC chip. An interrupt might allow an access to one of 37 those registers while SMC IO is being performed. 38
··· 32 only needs occurs after the SMC IO write cycle. The routines that 33 implement this work-around make an additional concession which is to 34 disable interrupts during the IO sequence. Other hardware devices 35 + (the LogicPD CPLD) have registers in the same physical memory 36 region as the SMC chip. An interrupt might allow an access to one of 37 those registers while SMC IO is being performed. 38
+4
Documentation/debugging-modules.txt
··· 16 echo 'exec /sbin/modprobe "$@"' >> /tmp/modprobe 17 chmod a+x /tmp/modprobe 18 echo /tmp/modprobe > /proc/sys/kernel/modprobe
··· 16 echo 'exec /sbin/modprobe "$@"' >> /tmp/modprobe 17 chmod a+x /tmp/modprobe 18 echo /tmp/modprobe > /proc/sys/kernel/modprobe 19 + 20 + Note that the above applies only when the *kernel* is requesting 21 + that the module be loaded -- it won't have any effect if that module 22 + is being loaded explicitly using "modprobe" from userspace.
+1 -1
Documentation/filesystems/configfs/configfs.txt
··· 377 Rather than have a group where some items behave differently than 378 others, configfs provides a method whereby one or many subgroups are 379 automatically created inside the parent at its creation. Thus, 380 - mkdir("parent) results in "parent", "parent/subgroup1", up through 381 "parent/subgroupN". Items of type 1 can now be created in 382 "parent/subgroup1", and items of type N can be created in 383 "parent/subgroupN".
··· 377 Rather than have a group where some items behave differently than 378 others, configfs provides a method whereby one or many subgroups are 379 automatically created inside the parent at its creation. Thus, 380 + mkdir("parent") results in "parent", "parent/subgroup1", up through 381 "parent/subgroupN". Items of type 1 can now be created in 382 "parent/subgroup1", and items of type N can be created in 383 "parent/subgroupN".
+3 -3
Documentation/filesystems/porting
··· 1 Changes since 2.5.0: 2 3 - --- 4 [recommended] 5 6 New helpers: sb_bread(), sb_getblk(), sb_find_get_block(), set_bh(), ··· 10 11 (sb_find_get_block() replaces 2.4's get_hash_table()) 12 13 - --- 14 [recommended] 15 16 New methods: ->alloc_inode() and ->destroy_inode(). ··· 28 29 Use FOO_I(inode) instead of &inode->u.foo_inode_i; 30 31 - Add foo_alloc_inode() and foo_destory_inode() - the former should allocate 32 foo_inode_info and return the address of ->vfs_inode, the latter should free 33 FOO_I(inode) (see in-tree filesystems for examples). 34
··· 1 Changes since 2.5.0: 2 3 + --- 4 [recommended] 5 6 New helpers: sb_bread(), sb_getblk(), sb_find_get_block(), set_bh(), ··· 10 11 (sb_find_get_block() replaces 2.4's get_hash_table()) 12 13 + --- 14 [recommended] 15 16 New methods: ->alloc_inode() and ->destroy_inode(). ··· 28 29 Use FOO_I(inode) instead of &inode->u.foo_inode_i; 30 31 + Add foo_alloc_inode() and foo_destroy_inode() - the former should allocate 32 foo_inode_info and return the address of ->vfs_inode, the latter should free 33 FOO_I(inode) (see in-tree filesystems for examples). 34
+1
Documentation/filesystems/proc.txt
··· 216 priority priority level 217 nice nice level 218 num_threads number of threads 219 start_time time the process started after system boot 220 vsize virtual memory size 221 rss resident set memory size
··· 216 priority priority level 217 nice nice level 218 num_threads number of threads 219 + it_real_value (obsolete, always 0) 220 start_time time the process started after system boot 221 vsize virtual memory size 222 rss resident set memory size
+1 -1
Documentation/filesystems/ramfs-rootfs-initramfs.txt
··· 118 with the new root (cd /newmount; mount --move . /; chroot .), attach 119 stdin/stdout/stderr to the new /dev/console, and exec the new init. 120 121 - Since this is a remarkably persnickity process (and involves deleting 122 commands before you can run them), the klibc package introduced a helper 123 program (utils/run_init.c) to do all this for you. Most other packages 124 (such as busybox) have named this command "switch_root".
··· 118 with the new root (cd /newmount; mount --move . /; chroot .), attach 119 stdin/stdout/stderr to the new /dev/console, and exec the new init. 120 121 + Since this is a remarkably persnickety process (and involves deleting 122 commands before you can run them), the klibc package introduced a helper 123 program (utils/run_init.c) to do all this for you. Most other packages 124 (such as busybox) have named this command "switch_root".
+1 -1
Documentation/filesystems/relay.txt
··· 140 In order for a user application to make use of relay files, the 141 host filesystem must be mounted. For example, 142 143 - mount -t debugfs debugfs /debug 144 145 NOTE: the host filesystem doesn't need to be mounted for kernel 146 clients to create or use channels - it only needs to be
··· 140 In order for a user application to make use of relay files, the 141 host filesystem must be mounted. For example, 142 143 + mount -t debugfs debugfs /sys/kernel/debug 144 145 NOTE: the host filesystem doesn't need to be mounted for kernel 146 clients to create or use channels - it only needs to be
Documentation/fujitsu/frv/README.txt Documentation/frv/README.txt
Documentation/fujitsu/frv/atomic-ops.txt Documentation/frv/atomic-ops.txt
+1 -1
Documentation/fujitsu/frv/booting.txt Documentation/frv/booting.txt
··· 177 (*) vdc=... 178 179 This option configures the MB93493 companion chip visual display 180 - driver. Please see Documentation/fujitsu/mb93493/vdc.txt for more 181 information.
··· 177 (*) vdc=... 178 179 This option configures the MB93493 companion chip visual display 180 + driver. Please see Documentation/frv/mb93493/vdc.txt for more 181 information.
Documentation/fujitsu/frv/clock.txt Documentation/frv/clock.txt
Documentation/fujitsu/frv/configuring.txt Documentation/frv/configuring.txt
Documentation/fujitsu/frv/features.txt Documentation/frv/features.txt
Documentation/fujitsu/frv/gdbinit Documentation/frv/gdbinit
Documentation/fujitsu/frv/gdbstub.txt Documentation/frv/gdbstub.txt
Documentation/fujitsu/frv/kernel-ABI.txt Documentation/frv/kernel-ABI.txt
Documentation/fujitsu/frv/mmu-layout.txt Documentation/frv/mmu-layout.txt
+1 -1
Documentation/initrd.txt
··· 85 disk with the desired initrd content, cd to that directory, and run (as an 86 example): 87 88 - find . | cpio --quiet -c -o | gzip -9 -n > /boot/imagefile.img 89 90 Examining the contents of an existing image file is just as simple: 91
··· 85 disk with the desired initrd content, cd to that directory, and run (as an 86 example): 87 88 + find . | cpio --quiet -H newc -o | gzip -9 -n > /boot/imagefile.img 89 90 Examining the contents of an existing image file is just as simple: 91
+9 -12
Documentation/kernel-parameters.txt
··· 549 1 will print _a lot_ more information - normally 550 only useful to kernel developers. 551 552 - decnet= [HW,NET] 553 Format: <area>[,<node>] 554 See also Documentation/networking/decnet.txt. 555 ··· 1561 ramdisk_size= [RAM] Sizes of RAM disks in kilobytes 1562 See Documentation/ramdisk.txt. 1563 1564 - rcu.blimit= [KNL,BOOT] Set maximum number of finished 1565 - RCU callbacks to process in one batch. 1566 1567 - rcu.qhimark= [KNL,BOOT] Set threshold of queued 1568 RCU callbacks over which batch limiting is disabled. 1569 1570 - rcu.qlowmark= [KNL,BOOT] Set threshold of queued 1571 - RCU callbacks below which batch limiting is re-enabled. 1572 1573 rdinit= [KNL] 1574 Format: <full_path> ··· 1891 st= [HW,SCSI] SCSI tape parameters (buffers, etc.) 1892 See Documentation/scsi/st.txt. 1893 1894 - st0x= [HW,SCSI] 1895 - See header of drivers/scsi/seagate.c. 1896 - 1897 sti= [PARISC,HW] 1898 Format: <num> 1899 Set the STI (builtin display/keyboard on the HP-PARISC ··· 1974 1975 tipar.delay= [HW,PPT] 1976 Set inter-bit delay in microseconds (default 10). 1977 - 1978 - tmc8xx= [HW,SCSI] 1979 - See header of drivers/scsi/seagate.c. 1980 1981 tmscsim= [HW,SCSI] 1982 See comment before function dc390_setup() in
··· 549 1 will print _a lot_ more information - normally 550 only useful to kernel developers. 551 552 + decnet.addr= [HW,NET] 553 Format: <area>[,<node>] 554 See also Documentation/networking/decnet.txt. 555 ··· 1561 ramdisk_size= [RAM] Sizes of RAM disks in kilobytes 1562 See Documentation/ramdisk.txt. 1563 1564 + rcupdate.blimit= [KNL,BOOT] 1565 + Set maximum number of finished RCU callbacks to process 1566 + in one batch. 1567 1568 + rcupdate.qhimark= [KNL,BOOT] 1569 + Set threshold of queued 1570 RCU callbacks over which batch limiting is disabled. 1571 1572 + rcupdate.qlowmark= [KNL,BOOT] 1573 + Set threshold of queued RCU callbacks below which 1574 + batch limiting is re-enabled. 1575 1576 rdinit= [KNL] 1577 Format: <full_path> ··· 1888 st= [HW,SCSI] SCSI tape parameters (buffers, etc.) 1889 See Documentation/scsi/st.txt. 1890 1891 sti= [PARISC,HW] 1892 Format: <num> 1893 Set the STI (builtin display/keyboard on the HP-PARISC ··· 1974 1975 tipar.delay= [HW,PPT] 1976 Set inter-bit delay in microseconds (default 10). 1977 1978 tmscsim= [HW,SCSI] 1979 See comment before function dc390_setup() in
+1 -1
Documentation/networking/decnet.txt
··· 60 61 The kernel command line takes options looking like the following: 62 63 - decnet=1,2 64 65 the two numbers are the node address 1,2 = 1.2 For 2.2.xx kernels 66 and early 2.3.xx kernels, you must use a comma when specifying the
··· 60 61 The kernel command line takes options looking like the following: 62 63 + decnet.addr=1,2 64 65 the two numbers are the node address 1,2 = 1.2 For 2.2.xx kernels 66 and early 2.3.xx kernels, you must use a comma when specifying the
-22
Documentation/smp.txt
··· 1 - To set up SMP 2 - 3 - Configure the kernel and answer Y to CONFIG_SMP. 4 - 5 - If you are using LILO, it is handy to have both SMP and non-SMP 6 - kernel images on hand. Edit /etc/lilo.conf to create an entry 7 - for another kernel image called "linux-smp" or something. 8 - 9 - The next time you compile the kernel, when running a SMP kernel, 10 - edit linux/Makefile and change "MAKE=make" to "MAKE=make -jN" 11 - (where N = number of CPU + 1, or if you have tons of memory/swap 12 - you can just use "-j" without a number). Feel free to experiment 13 - with this one. 14 - 15 - Of course you should time how long each build takes :-) 16 - Example: 17 - make config 18 - time -v sh -c 'make clean install modules modules_install' 19 - 20 - If you are using some Compaq MP compliant machines you will need to set 21 - the operating system in the BIOS settings to "Unixware" - don't ask me 22 - why Compaqs don't work otherwise.
···
+2 -11
MAINTAINERS
··· 3177 3178 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER 3179 P: Corey Thomas 3180 - M: corey@world.std.com 3181 L: linux-wireless@vger.kernel.org 3182 S: Maintained 3183 ··· 3790 S: Maintained 3791 3792 TRIVIAL PATCHES 3793 - P: Adrian Bunk 3794 M: trivial@kernel.org 3795 L: linux-kernel@vger.kernel.org 3796 - W: http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/ 3797 - T: git kernel.org:/pub/scm/linux/kernel/git/bunk/trivial.git 3798 - S: Maintained 3799 - 3800 - TMS380 TOKEN-RING NETWORK DRIVER 3801 - P: Adam Fritzler 3802 - M: mid@auk.cx 3803 - L: linux-tr@linuxtr.net 3804 - W: http://www.auk.cx/tms380tr/ 3805 S: Maintained 3806 3807 TULIP NETWORK DRIVER
··· 3177 3178 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER 3179 P: Corey Thomas 3180 + M: coreythomas@charter.net 3181 L: linux-wireless@vger.kernel.org 3182 S: Maintained 3183 ··· 3790 S: Maintained 3791 3792 TRIVIAL PATCHES 3793 + P: Jesper Juhl 3794 M: trivial@kernel.org 3795 L: linux-kernel@vger.kernel.org 3796 S: Maintained 3797 3798 TULIP NETWORK DRIVER
+1 -1
Makefile
··· 1484 # Single targets 1485 # --------------------------------------------------------------------------- 1486 # Single targets are compatible with: 1487 - # - build whith mixed source and output 1488 # - build with separate output dir 'make O=...' 1489 # - external modules 1490 #
··· 1484 # Single targets 1485 # --------------------------------------------------------------------------- 1486 # Single targets are compatible with: 1487 + # - build with mixed source and output 1488 # - build with separate output dir 'make O=...' 1489 # - external modules 1490 #
+2 -2
arch/alpha/Kconfig
··· 532 singleprocessor machines. On a singleprocessor machine, the kernel 533 will run faster if you say N here. 534 535 - See also the <file:Documentation/smp.txt>, and the SMP-HOWTO 536 - available at <http://www.tldp.org/docs.html#howto>. 537 538 If you don't know what to do here, say N. 539
··· 532 singleprocessor machines. On a singleprocessor machine, the kernel 533 will run faster if you say N here. 534 535 + See also the SMP-HOWTO available at 536 + <http://www.tldp.org/docs.html#howto>. 537 538 If you don't know what to do here, say N. 539
+1 -2
arch/arm/Kconfig
··· 635 processor machines. On a single processor machine, the kernel will 636 run faster if you say N here. 637 638 - See also the <file:Documentation/smp.txt>, 639 - <file:Documentation/i386/IO-APIC.txt>, 640 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at 641 <http://www.linuxdoc.org/docs.html#howto>. 642
··· 635 processor machines. On a single processor machine, the kernel will 636 run faster if you say N here. 637 638 + See also <file:Documentation/i386/IO-APIC.txt>, 639 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at 640 <http://www.linuxdoc.org/docs.html#howto>. 641
+1 -1
arch/arm/mach-pxa/corgi_ssp.c
··· 32 /* 33 * There are three devices connected to the SSP interface: 34 * 1. A touchscreen controller (TI ADS7846 compatible) 35 - * 2. An LCD contoller (with some Backlight functionality) 36 * 3. A battery monitoring IC (Maxim MAX1111) 37 * 38 * Each device uses a different speed/mode of communication.
··· 32 /* 33 * There are three devices connected to the SSP interface: 34 * 1. A touchscreen controller (TI ADS7846 compatible) 35 + * 2. An LCD controller (with some Backlight functionality) 36 * 3. A battery monitoring IC (Maxim MAX1111) 37 * 38 * Each device uses a different speed/mode of communication.
+1 -1
arch/arm/mach-sa1100/collie_pm.c
··· 165 166 ucb1x00_adc_enable(ucb); 167 ucb1x00_io_write(ucb, COLLIE_TC35143_GPIO_TMP_ON, 0); 168 - /* >1010 = battery removed, 460 = 22C ?, higer = lower temp ? */ 169 voltage = ucb1x00_adc_read(ucb, UCB_ADC_INP_AD0, UCB_SYNC); 170 ucb1x00_io_write(ucb, 0, COLLIE_TC35143_GPIO_TMP_ON); 171 ucb1x00_adc_disable(ucb);
··· 165 166 ucb1x00_adc_enable(ucb); 167 ucb1x00_io_write(ucb, COLLIE_TC35143_GPIO_TMP_ON, 0); 168 + /* >1010 = battery removed, 460 = 22C ?, higher = lower temp ? */ 169 voltage = ucb1x00_adc_read(ucb, UCB_ADC_INP_AD0, UCB_SYNC); 170 ucb1x00_io_write(ucb, 0, COLLIE_TC35143_GPIO_TMP_ON); 171 ucb1x00_adc_disable(ucb);
+1 -1
arch/arm/plat-s3c24xx/irq.c
··· 47 * Mark IRQ_LCD valid 48 * 49 * 25-Jul-2005 Ben Dooks 50 - * Split the S3C2440 IRQ code to seperate file 51 */ 52 53 #include <linux/init.h>
··· 47 * Mark IRQ_LCD valid 48 * 49 * 25-Jul-2005 Ben Dooks 50 + * Split the S3C2440 IRQ code to separate file 51 */ 52 53 #include <linux/init.h>
+1 -1
arch/frv/Kconfig
··· 79 Setting this option causes the FR-V atomic operations to be mostly 80 implemented out-of-line. 81 82 - See Documentation/fujitsu/frv/atomic-ops.txt for more information. 83 84 config HIGHMEM 85 bool "High memory support"
··· 79 Setting this option causes the FR-V atomic operations to be mostly 80 implemented out-of-line. 81 82 + See Documentation/frv/atomic-ops.txt for more information. 83 84 config HIGHMEM 85 bool "High memory support"
+2 -2
arch/frv/kernel/entry.S
··· 253 andi.p gr5,#~PSR_ET,gr5 254 255 # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel 256 - # - for an explanation of how it works, see: Documentation/fujitsu/frv/atomic-ops.txt 257 andi gr25,#~0xc0,gr25 258 259 sti gr20,@(gr28,#REG_TBR) ··· 445 sti gr22,@(sp,#REG_SP) 446 447 # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel 448 - # - for an explanation of how it works, see: Documentation/fujitsu/frv/atomic-ops.txt 449 movsg cccr,gr20 450 andi gr20,#~0xc0,gr20 451 movgs gr20,cccr
··· 253 andi.p gr5,#~PSR_ET,gr5 254 255 # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel 256 + # - for an explanation of how it works, see: Documentation/frv/atomic-ops.txt 257 andi gr25,#~0xc0,gr25 258 259 sti gr20,@(gr28,#REG_TBR) ··· 445 sti gr22,@(sp,#REG_SP) 446 447 # set CCCR.CC3 to Undefined to abort atomic-modify completion inside the kernel 448 + # - for an explanation of how it works, see: Documentation/frv/atomic-ops.txt 449 movsg cccr,gr20 450 andi gr20,#~0xc0,gr20 451 movgs gr20,cccr
+1 -1
arch/frv/lib/atomic-ops.S
··· 1 /* atomic-ops.S: kernel atomic operations 2 * 3 * For an explanation of how atomic ops work in this arch, see: 4 - * Documentation/fujitsu/frv/atomic-ops.txt 5 * 6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. 7 * Written by David Howells (dhowells@redhat.com)
··· 1 /* atomic-ops.S: kernel atomic operations 2 * 3 * For an explanation of how atomic ops work in this arch, see: 4 + * Documentation/frv/atomic-ops.txt 5 * 6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. 7 * Written by David Howells (dhowells@redhat.com)
+1 -1
arch/h8300/platform/h8s/ints.c
··· 121 printk("virtual vector at 0x%08lx\n",(unsigned long)ramvec); 122 123 #if defined(CONFIG_GDB_DEBUG) 124 - /* save orignal break vector */ 125 break_vec = ramvec[TRAP3_VEC]; 126 #else 127 break_vec = VECTOR(trace_break);
··· 121 printk("virtual vector at 0x%08lx\n",(unsigned long)ramvec); 122 123 #if defined(CONFIG_GDB_DEBUG) 124 + /* save original break vector */ 125 break_vec = ramvec[TRAP3_VEC]; 126 #else 127 break_vec = VECTOR(trace_break);
+2 -2
arch/ia64/Kconfig
··· 285 single processor systems. On a single processor system, the kernel 286 will run faster if you say N here. 287 288 - See also the <file:Documentation/smp.txt> and the SMP-HOWTO 289 - available at <http://www.tldp.org/docs.html#howto>. 290 291 If you don't know what to do here, say N. 292
··· 285 single processor systems. On a single processor system, the kernel 286 will run faster if you say N here. 287 288 + See also the SMP-HOWTO available at 289 + <http://www.tldp.org/docs.html#howto>. 290 291 If you don't know what to do here, say N. 292
+1 -2
arch/m32r/Kconfig
··· 303 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 304 Management" code will be disabled if you say Y here. 305 306 - See also the <file:Documentation/smp.txt>, 307 - and the SMP-HOWTO available at 308 <http://www.linuxdoc.org/docs.html#howto>. 309 310 If you don't know what to do here, say N.
··· 303 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 304 Management" code will be disabled if you say Y here. 305 306 + See also the SMP-HOWTO available at 307 <http://www.linuxdoc.org/docs.html#howto>. 308 309 If you don't know what to do here, say N.
+1 -1
arch/m32r/kernel/ptrace.c
··· 476 return 0; 477 } 478 479 - /* Recover orignal instruction code. */ 480 *code = p->insn[i]; 481 482 /* Shift debug trap entries. */
··· 476 return 0; 477 } 478 479 + /* Recover original instruction code. */ 480 *code = p->insn[i]; 481 482 /* Shift debug trap entries. */
+2 -2
arch/mips/Kconfig
··· 1755 People using multiprocessor machines who say Y here should also say 1756 Y to "Enhanced Real Time Clock Support", below. 1757 1758 - See also the <file:Documentation/smp.txt> and the SMP-HOWTO 1759 - available at <http://www.tldp.org/docs.html#howto>. 1760 1761 If you don't know what to do here, say N. 1762
··· 1755 People using multiprocessor machines who say Y here should also say 1756 Y to "Enhanced Real Time Clock Support", below. 1757 1758 + See also the SMP-HOWTO available at 1759 + <http://www.tldp.org/docs.html#howto>. 1760 1761 If you don't know what to do here, say N. 1762
+1 -1
arch/mips/au1000/mtx-1/board_setup.c
··· 99 #endif 100 101 if (assert && devsel != 0) { 102 - // supress signal to cardbus 103 au_writel( 0x00000002, SYS_OUTPUTCLR ); // set EXT_IO3 OFF 104 } 105 else {
··· 99 #endif 100 101 if (assert && devsel != 0) { 102 + // suppress signal to cardbus 103 au_writel( 0x00000002, SYS_OUTPUTCLR ); // set EXT_IO3 OFF 104 } 105 else {
+1 -1
arch/mips/kernel/binfmt_elfn32.c
··· 98 jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) 99 { 100 /* 101 - * Convert jiffies to nanoseconds and seperate with 102 * one divide. 103 */ 104 u64 nsec = (u64)jiffies * TICK_NSEC;
··· 98 jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) 99 { 100 /* 101 + * Convert jiffies to nanoseconds and separate with 102 * one divide. 103 */ 104 u64 nsec = (u64)jiffies * TICK_NSEC;
+1 -1
arch/mips/kernel/binfmt_elfo32.c
··· 100 jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) 101 { 102 /* 103 - * Convert jiffies to nanoseconds and seperate with 104 * one divide. 105 */ 106 u64 nsec = (u64)jiffies * TICK_NSEC;
··· 100 jiffies_to_compat_timeval(unsigned long jiffies, struct compat_timeval *value) 101 { 102 /* 103 + * Convert jiffies to nanoseconds and separate with 104 * one divide. 105 */ 106 u64 nsec = (u64)jiffies * TICK_NSEC;
+1 -1
arch/mips/kernel/kspd.c
··· 221 } 222 } 223 224 - /* Run the syscall at the priviledge of the user who loaded the 225 SP program */ 226 227 if (vpe_getuid(tclimit))
··· 221 } 222 } 223 224 + /* Run the syscall at the privilege of the user who loaded the 225 SP program */ 226 227 if (vpe_getuid(tclimit))
+2 -2
arch/mips/kernel/setup.c
··· 424 #endif /* CONFIG_SGI_IP27 */ 425 426 /* 427 - * arch_mem_init - initialize memory managment subsystem 428 * 429 * o plat_mem_setup() detects the memory configuration and will record detected 430 * memory areas using add_memory_region. 431 * 432 * At this stage the memory configuration of the system is known to the 433 - * kernel but generic memory managment system is still entirely uninitialized. 434 * 435 * o bootmem_init() 436 * o sparse_init()
··· 424 #endif /* CONFIG_SGI_IP27 */ 425 426 /* 427 + * arch_mem_init - initialize memory management subsystem 428 * 429 * o plat_mem_setup() detects the memory configuration and will record detected 430 * memory areas using add_memory_region. 431 * 432 * At this stage the memory configuration of the system is known to the 433 + * kernel but generic memory management system is still entirely uninitialized. 434 * 435 * o bootmem_init() 436 * o sparse_init()
+3 -3
arch/mips/kernel/smtc.c
··· 65 static atomic_t ipi_timer_latch[NR_CPUS]; 66 67 /* 68 - * Number of InterProcessor Interupt (IPI) message buffers to allocate 69 */ 70 71 #define IPIBUF_PER_CPU 4 ··· 780 if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) { 781 if (type == SMTC_CLOCK_TICK) 782 atomic_inc(&ipi_timer_latch[cpu]); 783 - /* If not on same VPE, enqueue and send cross-VPE interupt */ 784 smtc_ipi_nq(&IPIQ[cpu], pipi); 785 LOCK_CORE_PRA(); 786 settc(cpu_data[cpu].tc_id); ··· 1063 return; 1064 1065 if (!cpu_has_vint) 1066 - panic("SMTC Kernel requires Vectored Interupt support"); 1067 1068 set_vi_handler(MIPS_CPU_IPI_IRQ, ipi_irq_dispatch); 1069
··· 65 static atomic_t ipi_timer_latch[NR_CPUS]; 66 67 /* 68 + * Number of InterProcessor Interrupt (IPI) message buffers to allocate 69 */ 70 71 #define IPIBUF_PER_CPU 4 ··· 780 if (cpu_data[cpu].vpe_id != cpu_data[smp_processor_id()].vpe_id) { 781 if (type == SMTC_CLOCK_TICK) 782 atomic_inc(&ipi_timer_latch[cpu]); 783 + /* If not on same VPE, enqueue and send cross-VPE interrupt */ 784 smtc_ipi_nq(&IPIQ[cpu], pipi); 785 LOCK_CORE_PRA(); 786 settc(cpu_data[cpu].tc_id); ··· 1063 return; 1064 1065 if (!cpu_has_vint) 1066 + panic("SMTC Kernel requires Vectored Interrupt support"); 1067 1068 set_vi_handler(MIPS_CPU_IPI_IRQ, ipi_irq_dispatch); 1069
+1 -1
arch/mips/mm/c-r4k.c
··· 1101 /* 1102 * Do the probing thing on R4000SC and R4400SC processors. Other 1103 * processors don't have a S-cache that would be relevant to the 1104 - * Linux memory managment. 1105 */ 1106 switch (c->cputype) { 1107 case CPU_R4000SC:
··· 1101 /* 1102 * Do the probing thing on R4000SC and R4400SC processors. Other 1103 * processors don't have a S-cache that would be relevant to the 1104 + * Linux memory management. 1105 */ 1106 switch (c->cputype) { 1107 case CPU_R4000SC:
+1 -1
arch/mips/sgi-ip27/ip27-hubio.c
··· 168 } 169 170 /* 171 - * hub_pio_init - PIO-related hub initalization 172 * 173 * @hub: hubinfo structure for our hub 174 */
··· 168 } 169 170 /* 171 + * hub_pio_init - PIO-related hub initialization 172 * 173 * @hub: hubinfo structure for our hub 174 */
+2 -3
arch/parisc/Kconfig
··· 206 singleprocessor machines. On a singleprocessor machine, the kernel 207 will run faster if you say N here. 208 209 - See also the <file:Documentation/smp.txt>, 210 - <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available 211 - at <http://www.tldp.org/docs.html#howto>. 212 213 If you don't know what to do here, say N. 214
··· 206 singleprocessor machines. On a singleprocessor machine, the kernel 207 will run faster if you say N here. 208 209 + See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO 210 + available at <http://www.tldp.org/docs.html#howto>. 211 212 If you don't know what to do here, say N. 213
+1 -1
arch/parisc/kernel/cache.c
··· 305 /* save the current process space and pgd */ 306 unsigned long space = mfsp(3), pgd = mfctl(25); 307 308 - /* we don't mind taking interrups since they may not 309 * do anything with user space, but we can't 310 * be preempted here */ 311 preempt_disable();
··· 305 /* save the current process space and pgd */ 306 unsigned long space = mfsp(3), pgd = mfctl(25); 307 308 + /* we don't mind taking interrupts since they may not 309 * do anything with user space, but we can't 310 * be preempted here */ 311 preempt_disable();
+1 -1
arch/parisc/kernel/hardware.c
··· 1187 {HPHW_FIO, 0x005, 0x000A9, 0x00, "AllegroLow Core PCI USB KB"}, 1188 {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI SuperIO RS-232"}, 1189 {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI USB KB"}, 1190 - {HPHW_FIO, 0x007, 0x000A9, 0x0, "Miscelaneous PCI Plug-in"}, 1191 {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI SuperIO RS-232"}, 1192 {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI USB KB"}, 1193 {HPHW_FIO, 0x004, 0x00320, 0x0, "Metheus Frame Buffer"},
··· 1187 {HPHW_FIO, 0x005, 0x000A9, 0x00, "AllegroLow Core PCI USB KB"}, 1188 {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI SuperIO RS-232"}, 1189 {HPHW_FIO, 0x006, 0x000A9, 0x00, "AllegroHigh Core PCI USB KB"}, 1190 + {HPHW_FIO, 0x007, 0x000A9, 0x0, "Miscellaneous PCI Plug-in"}, 1191 {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI SuperIO RS-232"}, 1192 {HPHW_FIO, 0x00A, 0x000A9, 0x0, "Lego 360 Core PCI USB KB"}, 1193 {HPHW_FIO, 0x004, 0x00320, 0x0, "Metheus Frame Buffer"},
+1 -1
arch/parisc/kernel/signal.c
··· 333 flush_user_icache_range((unsigned long) &frame->tramp[0], 334 (unsigned long) &frame->tramp[TRAMP_SIZE]); 335 336 - /* TRAMP Words 0-4, Lenght 5 = SIGRESTARTBLOCK_TRAMP 337 * TRAMP Words 5-9, Length 4 = SIGRETURN_TRAMP 338 * So the SIGRETURN_TRAMP is at the end of SIGRESTARTBLOCK_TRAMP 339 */
··· 333 flush_user_icache_range((unsigned long) &frame->tramp[0], 334 (unsigned long) &frame->tramp[TRAMP_SIZE]); 335 336 + /* TRAMP Words 0-4, Length 5 = SIGRESTARTBLOCK_TRAMP 337 * TRAMP Words 5-9, Length 4 = SIGRETURN_TRAMP 338 * So the SIGRETURN_TRAMP is at the end of SIGRESTARTBLOCK_TRAMP 339 */
+2 -2
arch/s390/Kconfig
··· 83 singleprocessor machines. On a singleprocessor machine, the kernel 84 will run faster if you say N here. 85 86 - See also the <file:Documentation/smp.txt> and the SMP-HOWTO 87 - available at <http://www.tldp.org/docs.html#howto>. 88 89 Even if you don't know what to do here, say Y. 90
··· 83 singleprocessor machines. On a singleprocessor machine, the kernel 84 will run faster if you say N here. 85 86 + See also the SMP-HOWTO available at 87 + <http://www.tldp.org/docs.html#howto>. 88 89 Even if you don't know what to do here, say Y. 90
+2 -3
arch/sh/Kconfig
··· 673 People using multiprocessor machines who say Y here should also say 674 Y to "Enhanced Real Time Clock Support", below. 675 676 - See also the <file:Documentation/smp.txt>, 677 - <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available 678 - at <http://www.tldp.org/docs.html#howto>. 679 680 If you don't know what to do here, say N. 681
··· 673 People using multiprocessor machines who say Y here should also say 674 Y to "Enhanced Real Time Clock Support", below. 675 676 + See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO 677 + available at <http://www.tldp.org/docs.html#howto>. 678 679 If you don't know what to do here, say N. 680
+2 -3
arch/sparc/Kconfig
··· 48 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 49 Management" code will be disabled if you say Y here. 50 51 - See also the <file:Documentation/smp.txt>, 52 - <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at 53 - <http://www.tldp.org/docs.html#howto>. 54 55 If you don't know what to do here, say N. 56
··· 48 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 49 Management" code will be disabled if you say Y here. 50 51 + See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO 52 + available at <http://www.tldp.org/docs.html#howto>. 53 54 If you don't know what to do here, say N. 55
+2 -2
arch/sparc/kernel/ioport.c
··· 305 struct resource *res; 306 int order; 307 308 - /* XXX why are some lenghts signed, others unsigned? */ 309 if (len <= 0) { 310 return NULL; 311 } ··· 393 */ 394 dma_addr_t sbus_map_single(struct sbus_dev *sdev, void *va, size_t len, int direction) 395 { 396 - /* XXX why are some lenghts signed, others unsigned? */ 397 if (len <= 0) { 398 return 0; 399 }
··· 305 struct resource *res; 306 int order; 307 308 + /* XXX why are some lengths signed, others unsigned? */ 309 if (len <= 0) { 310 return NULL; 311 } ··· 393 */ 394 dma_addr_t sbus_map_single(struct sbus_dev *sdev, void *va, size_t len, int direction) 395 { 396 + /* XXX why are some lengths signed, others unsigned? */ 397 if (len <= 0) { 398 return 0; 399 }
+2 -3
arch/sparc64/Kconfig
··· 168 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 169 Management" code will be disabled if you say Y here. 170 171 - See also the <file:Documentation/smp.txt>, 172 - <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at 173 - <http://www.tldp.org/docs.html#howto>. 174 175 If you don't know what to do here, say N. 176
··· 168 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 169 Management" code will be disabled if you say Y here. 170 171 + See also <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO 172 + available at <http://www.tldp.org/docs.html#howto>. 173 174 If you don't know what to do here, say N. 175
+1 -1
arch/um/sys-x86_64/signal.c
··· 112 err |= PUTREG(regs, RSI, to, si); 113 err |= PUTREG(regs, RBP, to, bp); 114 /* 115 - * Must use orignal RSP, which is passed in, rather than what's in 116 * the pt_regs, because that's already been updated to point at the 117 * signal frame. 118 */
··· 112 err |= PUTREG(regs, RSI, to, si); 113 err |= PUTREG(regs, RBP, to, bp); 114 /* 115 + * Must use original RSP, which is passed in, rather than what's in 116 * the pt_regs, because that's already been updated to point at the 117 * signal frame. 118 */
+1 -2
arch/x86/Kconfig
··· 202 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 203 Management" code will be disabled if you say Y here. 204 205 - See also the <file:Documentation/smp.txt>, 206 - <file:Documentation/i386/IO-APIC.txt>, 207 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at 208 <http://www.tldp.org/docs.html#howto>. 209
··· 202 Y to "Enhanced Real Time Clock Support", below. The "Advanced Power 203 Management" code will be disabled if you say Y here. 204 205 + See also <file:Documentation/i386/IO-APIC.txt>, 206 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at 207 <http://www.tldp.org/docs.html#howto>. 208
+1 -1
arch/x86/lib/bitops_32.c
··· 2 #include <linux/module.h> 3 4 /** 5 - * find_next_bit - find the first set bit in a memory region 6 * @addr: The address to base the search on 7 * @offset: The bitnumber to start searching at 8 * @size: The maximum size to search
··· 2 #include <linux/module.h> 3 4 /** 5 + * find_next_bit - find the next set bit in a memory region 6 * @addr: The address to base the search on 7 * @offset: The bitnumber to start searching at 8 * @size: The maximum size to search
+1 -1
arch/x86/lib/bitops_64.c
··· 58 } 59 60 /** 61 - * find_next_zero_bit - find the first zero bit in a memory region 62 * @addr: The address to base the search on 63 * @offset: The bitnumber to start searching at 64 * @size: The maximum size to search
··· 58 } 59 60 /** 61 + * find_next_zero_bit - find the next zero bit in a memory region 62 * @addr: The address to base the search on 63 * @offset: The bitnumber to start searching at 64 * @size: The maximum size to search
+1 -1
drivers/acpi/scan.c
··· 830 if (ACPI_SUCCESS(status)) 831 device->flags.wake_capable = 1; 832 833 - /* TBD: Peformance management */ 834 835 return 0; 836 }
··· 830 if (ACPI_SUCCESS(status)) 831 device->flags.wake_capable = 1; 832 833 + /* TBD: Performance management */ 834 835 return 0; 836 }
+1 -1
drivers/acpi/utilities/utresrc.c
··· 1 /******************************************************************************* 2 * 3 - * Module Name: utresrc - Resource managment utilities 4 * 5 ******************************************************************************/ 6
··· 1 /******************************************************************************* 2 * 3 + * Module Name: utresrc - Resource management utilities 4 * 5 ******************************************************************************/ 6
+1 -1
drivers/ata/ata_piix.c
··· 837 if (is_slave) { 838 /* clear TIME1|IE1|PPE1|DTE1 */ 839 master_data &= 0xff0f; 840 - /* Enable SITRE (seperate slave timing register) */ 841 master_data |= 0x4000; 842 /* enable PPE1, IE1 and TIME1 as needed */ 843 master_data |= (control << 4);
··· 837 if (is_slave) { 838 /* clear TIME1|IE1|PPE1|DTE1 */ 839 master_data &= 0xff0f; 840 + /* Enable SITRE (separate slave timing register) */ 841 master_data |= 0x4000; 842 /* enable PPE1, IE1 and TIME1 as needed */ 843 master_data |= (control << 4);
+1 -1
drivers/ata/libata-core.c
··· 3097 /** 3098 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER 3099 * @link: link on which timings will be programmed 3100 - * @r_failed_dev: out paramter for failed device 3101 * 3102 * Standard implementation of the function used to tune and set 3103 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
··· 3097 /** 3098 * ata_do_set_mode - Program timings and issue SET FEATURES - XFER 3099 * @link: link on which timings will be programmed 3100 + * @r_failed_dev: out parameter for failed device 3101 * 3102 * Standard implementation of the function used to tune and set 3103 * ATA device disk transfer mode (PIO3, UDMA6, etc.). If
+1 -1
drivers/ata/pata_at32.c
··· 324 if (irq < 0) 325 return irq; 326 327 - /* Setup struct containing private infomation */ 328 info = kzalloc(sizeof(struct at32_ide_info), GFP_KERNEL); 329 if (!info) 330 return -ENOMEM;
··· 324 if (irq < 0) 325 return irq; 326 327 + /* Setup struct containing private information */ 328 info = kzalloc(sizeof(struct at32_ide_info), GFP_KERNEL); 329 if (!info) 330 return -ENOMEM;
+1 -1
drivers/ata/pata_efar.c
··· 135 idetm_data &= 0xCC0F; 136 idetm_data |= (control << 4); 137 138 - /* Slave timing in seperate register */ 139 pci_read_config_byte(dev, 0x44, &slave_data); 140 slave_data &= 0x0F << shift; 141 slave_data |= ((timings[pio][0] << 2) | timings[pio][1]) << shift;
··· 135 idetm_data &= 0xCC0F; 136 idetm_data |= (control << 4); 137 138 + /* Slave timing in separate register */ 139 pci_read_config_byte(dev, 0x44, &slave_data); 140 slave_data &= 0x0F << shift; 141 slave_data |= ((timings[pio][0] << 2) | timings[pio][1]) << shift;
+1 -1
drivers/ata/pata_it8213.c
··· 128 idetm_data &= 0xCC0F; 129 idetm_data |= (control << 4); 130 131 - /* Slave timing in seperate register */ 132 pci_read_config_byte(dev, 0x44, &slave_data); 133 slave_data &= 0xF0; 134 slave_data |= ((timings[pio][0] << 2) | timings[pio][1]) << 4;
··· 128 idetm_data &= 0xCC0F; 129 idetm_data |= (control << 4); 130 131 + /* Slave timing in separate register */ 132 pci_read_config_byte(dev, 0x44, &slave_data); 133 slave_data &= 0xF0; 134 slave_data |= ((timings[pio][0] << 2) | timings[pio][1]) << 4;
+2 -2
drivers/ata/pata_sis.c
··· 345 346 if (adev->dma_mode < XFER_UDMA_0) { 347 /* bits 3-0 hold recovery timing bits 8-10 active timing and 348 - the higer bits are dependant on the device */ 349 timing &= ~0x870F; 350 timing |= mwdma_bits[speed]; 351 } else { ··· 385 386 if (adev->dma_mode < XFER_UDMA_0) { 387 /* bits 3-0 hold recovery timing bits 8-10 active timing and 388 - the higer bits are dependant on the device, bit 15 udma */ 389 timing &= ~0x870F; 390 timing |= mwdma_bits[speed]; 391 } else {
··· 345 346 if (adev->dma_mode < XFER_UDMA_0) { 347 /* bits 3-0 hold recovery timing bits 8-10 active timing and 348 + the higher bits are dependant on the device */ 349 timing &= ~0x870F; 350 timing |= mwdma_bits[speed]; 351 } else { ··· 385 386 if (adev->dma_mode < XFER_UDMA_0) { 387 /* bits 3-0 hold recovery timing bits 8-10 active timing and 388 + the higher bits are dependant on the device, bit 15 udma */ 389 timing &= ~0x870F; 390 timing |= mwdma_bits[speed]; 391 } else {
+2 -2
drivers/block/cciss_scsi.c
··· 1453 rc = sendcmd(CCISS_RESET_MSG, ctlr, NULL, 0, 2, 0, 0, 1454 (unsigned char *) &cmd_in_trouble->Header.LUN.LunAddrBytes[0], 1455 TYPE_MSG); 1456 - /* sendcmd turned off interrputs on the board, turn 'em back on. */ 1457 (*c)->access.set_intr_mask(*c, CCISS_INTR_ON); 1458 if (rc == 0) 1459 return SUCCESS; ··· 1483 0, 2, 0, 0, 1484 (unsigned char *) &cmd_to_abort->Header.LUN.LunAddrBytes[0], 1485 TYPE_MSG); 1486 - /* sendcmd turned off interrputs on the board, turn 'em back on. */ 1487 (*c)->access.set_intr_mask(*c, CCISS_INTR_ON); 1488 if (rc == 0) 1489 return SUCCESS;
··· 1453 rc = sendcmd(CCISS_RESET_MSG, ctlr, NULL, 0, 2, 0, 0, 1454 (unsigned char *) &cmd_in_trouble->Header.LUN.LunAddrBytes[0], 1455 TYPE_MSG); 1456 + /* sendcmd turned off interrupts on the board, turn 'em back on. */ 1457 (*c)->access.set_intr_mask(*c, CCISS_INTR_ON); 1458 if (rc == 0) 1459 return SUCCESS; ··· 1483 0, 2, 0, 0, 1484 (unsigned char *) &cmd_to_abort->Header.LUN.LunAddrBytes[0], 1485 TYPE_MSG); 1486 + /* sendcmd turned off interrupts on the board, turn 'em back on. */ 1487 (*c)->access.set_intr_mask(*c, CCISS_INTR_ON); 1488 if (rc == 0) 1489 return SUCCESS;
+1 -1
drivers/bluetooth/btuart_cs.c
··· 383 outb(lcr, iobase + UART_LCR); /* Set 8N1 */ 384 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */ 385 386 - /* Turn on interrups */ 387 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER); 388 389 spin_unlock_irqrestore(&(info->lock), flags);
··· 383 outb(lcr, iobase + UART_LCR); /* Set 8N1 */ 384 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */ 385 386 + /* Turn on interrupts */ 387 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER); 388 389 spin_unlock_irqrestore(&(info->lock), flags);
+1 -1
drivers/char/drm/r300_reg.h
··· 584 #define R300_RE_FOG_START 0x4298 585 586 /* Not sure why there are duplicate of factor and constant values. 587 - * My best guess so far is that there are seperate zbiases for test and write. 588 * Ordering might be wrong. 589 * Some of the tests indicate that fgl has a fallback implementation of zbias 590 * via pixel shaders.
··· 584 #define R300_RE_FOG_START 0x4298 585 586 /* Not sure why there are duplicate of factor and constant values. 587 + * My best guess so far is that there are separate zbiases for test and write. 588 * Ordering might be wrong. 589 * Some of the tests indicate that fgl has a fallback implementation of zbias 590 * via pixel shaders.
+1 -1
drivers/char/drm/via_dma.c
··· 400 } 401 402 /* 403 - * This function is used internally by ring buffer mangement code. 404 * 405 * Returns virtual pointer to ring buffer. 406 */
··· 400 } 401 402 /* 403 + * This function is used internally by ring buffer management code. 404 * 405 * Returns virtual pointer to ring buffer. 406 */
+1 -1
drivers/char/efirtc.c
··· 18 * 19 * NOTES: 20 * - Locking is required for safe execution of EFI calls with regards 21 - * to interrrupts and SMP. 22 * 23 * TODO (December 1999): 24 * - provide the API to set/get the WakeUp Alarm (different from the
··· 18 * 19 * NOTES: 20 * - Locking is required for safe execution of EFI calls with regards 21 + * to interrupts and SMP. 22 * 23 * TODO (December 1999): 24 * - provide the API to set/get the WakeUp Alarm (different from the
+2 -2
drivers/char/epca.c
··· 1797 res |= cflag & ((CBAUD ^ CBAUDEX) | PARODD | PARENB | CSTOPB | CSIZE); 1798 /* 1799 * This gets a little confusing. The Digi cards have their own 1800 - * representation of c_cflags controling baud rate. For the most part 1801 * this is identical to the Linux implementation. However; Digi 1802 * supports one rate (76800) that Linux doesn't. This means that the 1803 * c_cflag entry that would normally mean 76800 for Digi actually means ··· 2068 { 2069 /* 2070 * This call is made by the apps to complete the 2071 - * initilization of the board(s). This routine is 2072 * responsible for setting the card to its initial 2073 * state and setting the drivers control fields to the 2074 * sutianle settings for the card in question.
··· 1797 res |= cflag & ((CBAUD ^ CBAUDEX) | PARODD | PARENB | CSTOPB | CSIZE); 1798 /* 1799 * This gets a little confusing. The Digi cards have their own 1800 + * representation of c_cflags controlling baud rate. For the most part 1801 * this is identical to the Linux implementation. However; Digi 1802 * supports one rate (76800) that Linux doesn't. This means that the 1803 * c_cflag entry that would normally mean 76800 for Digi actually means ··· 2068 { 2069 /* 2070 * This call is made by the apps to complete the 2071 + * initialization of the board(s). This routine is 2072 * responsible for setting the card to its initial 2073 * state and setting the drivers control fields to the 2074 * sutianle settings for the card in question.
+1 -1
drivers/char/hangcheck-timer.c
··· 26 * The hangcheck-timer driver uses the TSC to catch delays that 27 * jiffies does not notice. A timer is set. When the timer fires, it 28 * checks whether it was delayed and if that delay exceeds a given 29 - * margin of error. The hangcheck_tick module paramter takes the timer 30 * duration in seconds. The hangcheck_margin parameter defines the 31 * margin of error, in seconds. The defaults are 60 seconds for the 32 * timer and 180 seconds for the margin of error. IOW, a timer is set
··· 26 * The hangcheck-timer driver uses the TSC to catch delays that 27 * jiffies does not notice. A timer is set. When the timer fires, it 28 * checks whether it was delayed and if that delay exceeds a given 29 + * margin of error. The hangcheck_tick module parameter takes the timer 30 * duration in seconds. The hangcheck_margin parameter defines the 31 * margin of error, in seconds. The defaults are 60 seconds for the 32 * timer and 180 seconds for the margin of error. IOW, a timer is set
+1 -1
drivers/char/hvcs.c
··· 838 if (!hvcsd) 839 return -ENODEV; 840 841 - /* By this time the vty-server won't be getting any more interrups */ 842 843 spin_lock_irqsave(&hvcsd->lock, flags); 844
··· 838 if (!hvcsd) 839 return -ENODEV; 840 841 + /* By this time the vty-server won't be getting any more interrupts */ 842 843 spin_lock_irqsave(&hvcsd->lock, flags); 844
+1 -1
drivers/char/ip2/i2lib.c
··· 661 if (!in_interrupt()) { 662 schedule_timeout_interruptible(1); // short nap 663 } else { 664 - // we cannot sched/sleep in interrrupt silly 665 return 0; 666 } 667 if (signal_pending(current)) {
··· 661 if (!in_interrupt()) { 662 schedule_timeout_interruptible(1); // short nap 663 } else { 664 + // we cannot sched/sleep in interrupt silly 665 return 0; 666 } 667 if (signal_pending(current)) {
+1 -1
drivers/char/ip2/ip2main.c
··· 1251 1252 // Just polled boards, IRQ = 0 will hit all non-interrupt boards. 1253 // It will NOT poll boards handled by hard interrupts. 1254 - // The issue of queued BH interrups is handled in ip2_interrupt(). 1255 ip2_polled_interrupt(); 1256 1257 PollTimer.expires = POLL_TIMEOUT;
··· 1251 1252 // Just polled boards, IRQ = 0 will hit all non-interrupt boards. 1253 // It will NOT poll boards handled by hard interrupts. 1254 + // The issue of queued BH interrupts is handled in ip2_interrupt(). 1255 ip2_polled_interrupt(); 1256 1257 PollTimer.expires = POLL_TIMEOUT;
+1 -1
drivers/char/synclink.c
··· 1544 1545 /* mgsl_isr_misc() 1546 * 1547 - * Service a miscellaneos interrupt source. 1548 * 1549 * Arguments: info pointer to device extension (instance data) 1550 * Return Value: None
··· 1544 1545 /* mgsl_isr_misc() 1546 * 1547 + * Service a miscellaneous interrupt source. 1548 * 1549 * Arguments: info pointer to device extension (instance data) 1550 * Return Value: None
+1 -1
drivers/char/toshiba.c
··· 505 if (tosh_probe()) 506 return -ENODEV; 507 508 - printk(KERN_INFO "Toshiba System Managment Mode driver v" TOSH_VERSION "\n"); 509 510 /* set the port to use for Fn status if not specified as a parameter */ 511 if (tosh_fn==0x00)
··· 505 if (tosh_probe()) 506 return -ENODEV; 507 508 + printk(KERN_INFO "Toshiba System Management Mode driver v" TOSH_VERSION "\n"); 509 510 /* set the port to use for Fn status if not specified as a parameter */ 511 if (tosh_fn==0x00)
+34 -36
drivers/dio/dio-driver.c
··· 15 #include <linux/dio.h> 16 17 18 - /** 19 - * dio_match_device - Tell if a DIO device structure has a matching 20 - * DIO device id structure 21 - * @ids: array of DIO device id structures to search in 22 - * @dev: the DIO device structure to match against 23 - * 24 - * Used by a driver to check whether a DIO device present in the 25 - * system is in its list of supported devices. Returns the matching 26 - * dio_device_id structure or %NULL if there is no match. 27 - */ 28 29 const struct dio_device_id * 30 dio_match_device(const struct dio_device_id *ids, ··· 65 } 66 67 68 - /** 69 - * dio_register_driver - register a new DIO driver 70 - * @drv: the driver structure to register 71 - * 72 - * Adds the driver structure to the list of registered drivers 73 - * Returns zero or a negative error value. 74 - */ 75 76 int dio_register_driver(struct dio_driver *drv) 77 { ··· 84 } 85 86 87 - /** 88 - * dio_unregister_driver - unregister a DIO driver 89 - * @drv: the driver structure to unregister 90 - * 91 - * Deletes the driver structure from the list of registered DIO drivers, 92 - * gives it a chance to clean up by calling its remove() function for 93 - * each device it was responsible for, and marks those devices as 94 - * driverless. 95 - */ 96 97 void dio_unregister_driver(struct dio_driver *drv) 98 { ··· 100 } 101 102 103 - /** 104 - * dio_bus_match - Tell if a DIO device structure has a matching DIO 105 - * device id structure 106 - * @ids: array of DIO device id structures to search in 107 - * @dev: the DIO device structure to match against 108 - * 109 - * Used by a driver to check whether a DIO device present in the 110 - * system is in its list of supported devices. Returns the matching 111 - * dio_device_id structure or %NULL if there is no match. 112 - */ 113 114 static int dio_bus_match(struct device *dev, struct device_driver *drv) 115 {
··· 15 #include <linux/dio.h> 16 17 18 + /** 19 + * dio_match_device - Tell if a DIO device structure has a matching DIO device id structure 20 + * @ids: array of DIO device id structures to search in 21 + * @d: the DIO device structure to match against 22 + * 23 + * Used by a driver to check whether a DIO device present in the 24 + * system is in its list of supported devices. Returns the matching 25 + * dio_device_id structure or %NULL if there is no match. 26 + */ 27 28 const struct dio_device_id * 29 dio_match_device(const struct dio_device_id *ids, ··· 66 } 67 68 69 + /** 70 + * dio_register_driver - register a new DIO driver 71 + * @drv: the driver structure to register 72 + * 73 + * Adds the driver structure to the list of registered drivers 74 + * Returns zero or a negative error value. 75 + */ 76 77 int dio_register_driver(struct dio_driver *drv) 78 { ··· 85 } 86 87 88 + /** 89 + * dio_unregister_driver - unregister a DIO driver 90 + * @drv: the driver structure to unregister 91 + * 92 + * Deletes the driver structure from the list of registered DIO drivers, 93 + * gives it a chance to clean up by calling its remove() function for 94 + * each device it was responsible for, and marks those devices as 95 + * driverless. 96 + */ 97 98 void dio_unregister_driver(struct dio_driver *drv) 99 { ··· 101 } 102 103 104 + /** 105 + * dio_bus_match - Tell if a DIO device structure has a matching DIO device id structure 106 + * @dev: the DIO device structure to match against 107 + * @drv: the &device_driver that points to the array of DIO device id structures to search 108 + * 109 + * Used by a driver to check whether a DIO device present in the 110 + * system is in its list of supported devices. Returns the matching 111 + * dio_device_id structure or %NULL if there is no match. 112 + */ 113 114 static int dio_bus_match(struct device *dev, struct device_driver *drv) 115 {
+1 -1
drivers/edac/edac_pci.c
··· 73 * 74 * Last action on the pci control structure. 75 * 76 - * call the remove sysfs informaton, which will unregister 77 * this control struct's kobj. When that kobj's ref count 78 * goes to zero, its release function will be call and then 79 * kfree() the memory.
··· 73 * 74 * Last action on the pci control structure. 75 * 76 + * call the remove sysfs information, which will unregister 77 * this control struct's kobj. When that kobj's ref count 78 * goes to zero, its release function will be call and then 79 * kfree() the memory.
+1 -1
drivers/edac/i5000_edac.c
··· 351 u16 b1_ambpresent0; /* Branch 1, Channel 8 */ 352 u16 b1_ambpresent1; /* Branch 1, Channel 1 */ 353 354 - /* DIMM infomation matrix, allocating architecture maximums */ 355 struct i5000_dimm_info dimm_info[MAX_CSROWS][MAX_CHANNELS]; 356 357 /* Actual values for this controller */
··· 351 u16 b1_ambpresent0; /* Branch 1, Channel 8 */ 352 u16 b1_ambpresent1; /* Branch 1, Channel 1 */ 353 354 + /* DIMM information matrix, allocating architecture maximums */ 355 struct i5000_dimm_info dimm_info[MAX_CSROWS][MAX_CHANNELS]; 356 357 /* Actual values for this controller */
+1 -1
drivers/firmware/edd.c
··· 11 * 12 * This code takes information provided by BIOS EDD calls 13 * fn41 - Check Extensions Present and 14 - * fn48 - Get Device Parametes with EDD extensions 15 * made in setup.S, copied to safe structures in setup.c, 16 * and presents it in sysfs. 17 *
··· 11 * 12 * This code takes information provided by BIOS EDD calls 13 * fn41 - Check Extensions Present and 14 + * fn48 - Get Device Parameters with EDD extensions 15 * made in setup.S, copied to safe structures in setup.c, 16 * and presents it in sysfs. 17 *
+1 -1
drivers/ide/ide-timing.h
··· 199 } 200 201 /* 202 - * Lenghten active & recovery time so that cycle time is correct. 203 */ 204 205 if (t->act8b + t->rec8b < t->cyc8b) {
··· 199 } 200 201 /* 202 + * Lengthen active & recovery time so that cycle time is correct. 203 */ 204 205 if (t->act8b + t->rec8b < t->cyc8b) {
-1
drivers/input/gameport/gameport.c
··· 17 #include <linux/init.h> 18 #include <linux/gameport.h> 19 #include <linux/wait.h> 20 - #include <linux/sched.h> 21 #include <linux/slab.h> 22 #include <linux/delay.h> 23 #include <linux/kthread.h>
··· 17 #include <linux/init.h> 18 #include <linux/gameport.h> 19 #include <linux/wait.h> 20 #include <linux/slab.h> 21 #include <linux/delay.h> 22 #include <linux/kthread.h>
-1
drivers/input/keyboard/bf54x-keys.c
··· 42 #include <linux/delay.h> 43 #include <linux/platform_device.h> 44 #include <linux/input.h> 45 - #include <linux/irq.h> 46 47 #include <asm/portmux.h> 48 #include <asm/mach/bf54x_keys.h>
··· 42 #include <linux/delay.h> 43 #include <linux/platform_device.h> 44 #include <linux/input.h> 45 46 #include <asm/portmux.h> 47 #include <asm/mach/bf54x_keys.h>
-1
drivers/input/keyboard/jornada720_kbd.c
··· 17 */ 18 #include <linux/device.h> 19 #include <linux/errno.h> 20 - #include <linux/init.h> 21 #include <linux/interrupt.h> 22 #include <linux/init.h> 23 #include <linux/input.h>
··· 17 */ 18 #include <linux/device.h> 19 #include <linux/errno.h> 20 #include <linux/interrupt.h> 21 #include <linux/init.h> 22 #include <linux/input.h>
+1 -1
drivers/input/serio/gscps2.c
··· 141 /* 142 * gscps2_writeb_output() - write a byte to the port 143 * 144 - * returns 1 on sucess, 0 on error 145 */ 146 147 static inline int gscps2_writeb_output(struct gscps2port *ps2port, u8 data)
··· 141 /* 142 * gscps2_writeb_output() - write a byte to the port 143 * 144 + * returns 1 on success, 0 on error 145 */ 146 147 static inline int gscps2_writeb_output(struct gscps2port *ps2port, u8 data)
+1 -1
drivers/isdn/hardware/eicon/debuglib.c
··· 106 return (1) ; 107 } 108 /* 109 - * Check if we registered whith an old maint driver (see debuglib.h) 110 */ 111 if ( myDriverDebugHandle.dbg_end != NULL 112 /* location of 'dbg_prt' in _OldDbgHandle_ struct */
··· 106 return (1) ; 107 } 108 /* 109 + * Check if we registered with an old maint driver (see debuglib.h) 110 */ 111 if ( myDriverDebugHandle.dbg_end != NULL 112 /* location of 'dbg_prt' in _OldDbgHandle_ struct */
+1 -1
drivers/isdn/hardware/eicon/debuglib.h
··· 177 } } 178 #endif 179 /* 180 - * For event level debug use a separate define, the paramete are 181 * different and cause compiler errors on some systems. 182 */ 183 #define DBG_EVL_ID(args) \
··· 177 } } 178 #endif 179 /* 180 + * For event level debug use a separate define, the parameter are 181 * different and cause compiler errors on some systems. 182 */ 183 #define DBG_EVL_ID(args) \
+1 -1
drivers/isdn/hardware/eicon/di.c
··· 285 a->ram_in(a, &RcIn->RcId), 286 a->ram_in(a, &RcIn->RcCh), 287 a->ram_inw(a, &RcIn->Reference), 288 - tmp[0], /* type of extended informtion */ 289 tmp[1]); /* extended information */ 290 a->ram_out(a, &RcIn->Rc, 0); 291 }
··· 285 a->ram_in(a, &RcIn->RcId), 286 a->ram_in(a, &RcIn->RcCh), 287 a->ram_inw(a, &RcIn->Reference), 288 + tmp[0], /* type of extended information */ 289 tmp[1]); /* extended information */ 290 a->ram_out(a, &RcIn->Rc, 0); 291 }
+1 -1
drivers/isdn/hardware/eicon/message.c
··· 4941 /* b = IE1 */ 4942 /* S = IE1 length + cont. */ 4943 /* b = IE2 */ 4944 - /* S = IE2 lenght + cont. */ 4945 sendf(plci->appl, 4946 _MANUFACTURER_I, 4947 Id,
··· 4941 /* b = IE1 */ 4942 /* S = IE1 length + cont. */ 4943 /* b = IE2 */ 4944 + /* S = IE2 length + cont. */ 4945 sendf(plci->appl, 4946 _MANUFACTURER_I, 4947 Id,
+1 -1
drivers/isdn/hysdn/hycapi.c
··· 541 } 542 ctrl = &cinfo->capi_ctrl; 543 if(len < CAPI_MSG_BASELEN) { 544 - printk(KERN_ERR "HYSDN Card%d: invalid CAPI-message, lenght %d!\n", 545 card->myid, len); 546 return; 547 }
··· 541 } 542 ctrl = &cinfo->capi_ctrl; 543 if(len < CAPI_MSG_BASELEN) { 544 + printk(KERN_ERR "HYSDN Card%d: invalid CAPI-message, length %d!\n", 545 card->myid, len); 546 return; 547 }
+2 -2
drivers/macintosh/smu.c
··· 12 * - maybe add timeout to commands ? 13 * - blocking version of time functions 14 * - polling version of i2c commands (including timer that works with 15 - * interrutps off) 16 * - maybe avoid some data copies with i2c by directly using the smu cmd 17 * buffer and a lower level internal interface 18 * - understand SMU -> CPU events and implement reception of them via ··· 179 /* CPU might have brought back the cache line, so we need 180 * to flush again before peeking at the SMU response. We 181 * flush the entire buffer for now as we haven't read the 182 - * reply lenght (it's only 2 cache lines anyway) 183 */ 184 faddr = (unsigned long)smu->cmd_buf; 185 flush_inval_dcache_range(faddr, faddr + 256);
··· 12 * - maybe add timeout to commands ? 13 * - blocking version of time functions 14 * - polling version of i2c commands (including timer that works with 15 + * interrupts off) 16 * - maybe avoid some data copies with i2c by directly using the smu cmd 17 * buffer and a lower level internal interface 18 * - understand SMU -> CPU events and implement reception of them via ··· 179 /* CPU might have brought back the cache line, so we need 180 * to flush again before peeking at the SMU response. We 181 * flush the entire buffer for now as we haven't read the 182 + * reply length (it's only 2 cache lines anyway) 183 */ 184 faddr = (unsigned long)smu->cmd_buf; 185 flush_inval_dcache_range(faddr, faddr + 256);
+1 -1
drivers/media/common/saa7146_core.c
··· 388 } 389 dev->revision &= 0xf; 390 391 - /* remap the memory from virtual to physical adress */ 392 393 err = pci_request_region(pci, 0, "saa7146"); 394 if (err < 0)
··· 388 } 389 dev->revision &= 0xf; 390 391 + /* remap the memory from virtual to physical address */ 392 393 err = pci_request_region(pci, 0, "saa7146"); 394 if (err < 0)
+1 -1
drivers/media/dvb/dvb-core/dvb_net.c
··· 681 drop = 1; 682 /* else: destination address matches the MAC address of our receiver device */ 683 } 684 - /* else: promiscious mode; pass everything up the stack */ 685 686 if (drop) { 687 #ifdef ULE_DEBUG
··· 681 drop = 1; 682 /* else: destination address matches the MAC address of our receiver device */ 683 } 684 + /* else: promiscuous mode; pass everything up the stack */ 685 686 if (drop) { 687 #ifdef ULE_DEBUG
+1 -1
drivers/media/video/bt8xx/bttv-cards.c
··· 4344 gpio_bits(0x200,0x000); 4345 mdelay(1); 4346 4347 - /* create a new conection */ 4348 gpio_bits(0x480,0x080); 4349 gpio_bits(0x480,0x480); 4350 mdelay(1);
··· 4344 gpio_bits(0x200,0x000); 4345 mdelay(1); 4346 4347 + /* create a new connection */ 4348 gpio_bits(0x480,0x080); 4349 gpio_bits(0x480,0x480); 4350 mdelay(1);
+1 -1
drivers/media/video/indycam.c
··· 326 // initialize 327 err = indycam_write_block(client, 0, sizeof(initseq), (u8 *)&initseq); 328 if (err) { 329 - printk(KERN_ERR "IndyCam initalization failed\n"); 330 err = -EIO; 331 goto out_detach_client; 332 }
··· 326 // initialize 327 err = indycam_write_block(client, 0, sizeof(initseq), (u8 *)&initseq); 328 if (err) { 329 + printk(KERN_ERR "IndyCam initialization failed\n"); 330 err = -EIO; 331 goto out_detach_client; 332 }
+1 -1
drivers/media/video/mt20xx.c
··· 369 .get_frequency = microtune_get_frequency, 370 }; 371 372 - // Initalization as described in "MT203x Programming Procedures", Rev 1.2, Feb.2001 373 static int mt2032_init(struct dvb_frontend *fe) 374 { 375 struct microtune_priv *priv = fe->tuner_priv;
··· 369 .get_frequency = microtune_get_frequency, 370 }; 371 372 + // Initialization as described in "MT203x Programming Procedures", Rev 1.2, Feb.2001 373 static int mt2032_init(struct dvb_frontend *fe) 374 { 375 struct microtune_priv *priv = fe->tuner_priv;
+1 -1
drivers/media/video/pvrusb2/pvrusb2.h
··· 27 might want to increase this - however the driver operation will not 28 be impaired if it is too small. Instead additional units just 29 won't have an ID assigned and it might not be possible to specify 30 - module paramters for those extra units. */ 31 #define PVR_NUM 20 32 33 #endif /* __PVRUSB2_H */
··· 27 might want to increase this - however the driver operation will not 28 be impaired if it is too small. Instead additional units just 29 won't have an ID assigned and it might not be possible to specify 30 + module parameters for those extra units. */ 31 #define PVR_NUM 20 32 33 #endif /* __PVRUSB2_H */
+1 -1
drivers/media/video/pwc/pwc-if.c
··· 542 } 543 544 if (pdev->read_frame != NULL) { 545 - /* Decompression is a lenghty process, so it's outside of the lock. 546 This gives the isoc_handler the opportunity to fill more frames 547 in the mean time. 548 */
··· 542 } 543 544 if (pdev->read_frame != NULL) { 545 + /* Decompression is a lengthy process, so it's outside of the lock. 546 This gives the isoc_handler the opportunity to fill more frames 547 in the mean time. 548 */
+1 -1
drivers/media/video/tea6420.c
··· 57 58 dprintk("adr:0x%02x, i:%d, o:%d, g:%d\n", client->addr, i, o, g); 59 60 - /* check if the paramters are valid */ 61 if (i < 1 || i > 6 || o < 1 || o > 4 || g < 0 || g > 6 || g % 2 != 0) 62 return -1; 63
··· 57 58 dprintk("adr:0x%02x, i:%d, o:%d, g:%d\n", client->addr, i, o, g); 59 60 + /* check if the parameters are valid */ 61 if (i < 1 || i > 6 || o < 1 || o > 4 || g < 0 || g > 6 || g % 2 != 0) 62 return -1; 63
+1 -1
drivers/media/video/usbvideo/quickcam_messenger.c
··· 258 unsigned int p; 259 260 /* 261 - the registers controling gain are 8 bit of which 262 we affect only the last 4 bits with our gain. 263 we know that if saturation is 0, (unsaturated) then 264 we're grayscale (center axis of the colour cone) so
··· 258 unsigned int p; 259 260 /* 261 + the registers controlling gain are 8 bit of which 262 we affect only the last 4 bits with our gain. 263 we know that if saturation is 0, (unsaturated) then 264 we're grayscale (center axis of the colour cone) so
+1 -1
drivers/media/video/usbvision/usbvision-video.c
··· 131 /* Function prototypes */ 132 static void usbvision_release(struct usb_usbvision *usbvision); 133 134 - /* Default initalization of device driver parameters */ 135 /* Set the default format for ISOC endpoint */ 136 static int isocMode = ISOC_MODE_COMPRESS; 137 /* Set the default Debug Mode of the device driver */
··· 131 /* Function prototypes */ 132 static void usbvision_release(struct usb_usbvision *usbvision); 133 134 + /* Default initialization of device driver parameters */ 135 /* Set the default format for ISOC endpoint */ 136 static int isocMode = ISOC_MODE_COMPRESS; 137 /* Set the default Debug Mode of the device driver */
+1 -1
drivers/media/video/vpx3220.c
··· 566 } 567 568 /* ----------------------------------------------------------------------- 569 - * Client managment code 570 */ 571 572 /*
··· 566 } 567 568 /* ----------------------------------------------------------------------- 569 + * Client management code 570 */ 571 572 /*
+1 -1
drivers/media/video/zoran_card.c
··· 1270 } 1271 1272 /* 1273 - * Scan for a Buz card (actually for the PCI contoler ZR36057), 1274 * request the irq and map the io memory 1275 */ 1276 static int __devinit
··· 1270 } 1271 1272 /* 1273 + * Scan for a Buz card (actually for the PCI controller ZR36057), 1274 * request the irq and map the io memory 1275 */ 1276 static int __devinit
+1 -1
drivers/media/video/zr36050.c
··· 161 udelay(1); 162 if (i++ > 200000) { // 200ms, there is for sure something wrong!!! 163 dprintk(1, 164 - "%s: timout at wait_end (last status: 0x%02x)\n", 165 ptr->name, ptr->status1); 166 break; 167 }
··· 161 udelay(1); 162 if (i++ > 200000) { // 200ms, there is for sure something wrong!!! 163 dprintk(1, 164 + "%s: timeout at wait_end (last status: 0x%02x)\n", 165 ptr->name, ptr->status1); 166 break; 167 }
+1 -1
drivers/media/video/zr36060.c
··· 163 udelay(1); 164 if (i++ > 200000) { // 200ms, there is for sure something wrong!!! 165 dprintk(1, 166 - "%s: timout at wait_end (last status: 0x%02x)\n", 167 ptr->name, ptr->status); 168 break; 169 }
··· 163 udelay(1); 164 if (i++ > 200000) { // 200ms, there is for sure something wrong!!! 165 dprintk(1, 166 + "%s: timeout at wait_end (last status: 0x%02x)\n", 167 ptr->name, ptr->status); 168 break; 169 }
+1 -1
drivers/message/fusion/lsi/mpi_log_sas.h
··· 162 #define PL_LOGINFO_SUB_CODE_FRAME_XFER_ERROR (0x00000400) /* Bits 0-3 encode Transport Status Register (offset 0x08) */ 163 /* Bit 0 is Status Bit 0: FrameXferErr */ 164 /* Bit 1 & 2 are Status Bits 16 and 17: FrameXmitErrStatus */ 165 - /* Bit 3 is Status Bit 18 WriteDataLenghtGTDataLengthErr */ 166 167 #define PL_LOGINFO_SUB_CODE_TX_FM_CONNECTED_LOW (0x00000500) 168 #define PL_LOGINFO_SUB_CODE_SATA_NON_NCQ_RW_ERR_BIT_SET (0x00000600)
··· 162 #define PL_LOGINFO_SUB_CODE_FRAME_XFER_ERROR (0x00000400) /* Bits 0-3 encode Transport Status Register (offset 0x08) */ 163 /* Bit 0 is Status Bit 0: FrameXferErr */ 164 /* Bit 1 & 2 are Status Bits 16 and 17: FrameXmitErrStatus */ 165 + /* Bit 3 is Status Bit 18 WriteDataLengthGTDataLengthErr */ 166 167 #define PL_LOGINFO_SUB_CODE_TX_FM_CONNECTED_LOW (0x00000500) 168 #define PL_LOGINFO_SUB_CODE_SATA_NON_NCQ_RW_ERR_BIT_SET (0x00000600)
+4 -4
drivers/message/fusion/mptctl.c
··· 1708 * 1709 * Outputs: None. 1710 * Return: 0 if successful 1711 - * -EBUSY if previous command timout and IOC reset is not complete. 1712 * -EFAULT if data unavailable 1713 * -ENODEV if no such device/adapter 1714 * -ETIME if timer expires ··· 1748 * 1749 * Outputs: None. 1750 * Return: 0 if successful 1751 - * -EBUSY if previous command timout and IOC reset is not complete. 1752 * -EFAULT if data unavailable 1753 * -ENODEV if no such device/adapter 1754 * -ETIME if timer expires ··· 2316 * Outputs: None. 2317 * Return: 0 if successful 2318 * -EFAULT if data unavailable 2319 - * -EBUSY if previous command timout and IOC reset is not complete. 2320 * -ENODEV if no such device/adapter 2321 * -ETIME if timer expires 2322 * -ENOMEM if memory allocation error ··· 2553 * Outputs: None. 2554 * Return: 0 if successful 2555 * -EFAULT if data unavailable 2556 - * -EBUSY if previous command timout and IOC reset is not complete. 2557 * -ENODEV if no such device/adapter 2558 * -ETIME if timer expires 2559 * -ENOMEM if memory allocation error
··· 1708 * 1709 * Outputs: None. 1710 * Return: 0 if successful 1711 + * -EBUSY if previous command timeout and IOC reset is not complete. 1712 * -EFAULT if data unavailable 1713 * -ENODEV if no such device/adapter 1714 * -ETIME if timer expires ··· 1748 * 1749 * Outputs: None. 1750 * Return: 0 if successful 1751 + * -EBUSY if previous command timeout and IOC reset is not complete. 1752 * -EFAULT if data unavailable 1753 * -ENODEV if no such device/adapter 1754 * -ETIME if timer expires ··· 2316 * Outputs: None. 2317 * Return: 0 if successful 2318 * -EFAULT if data unavailable 2319 + * -EBUSY if previous command timeout and IOC reset is not complete. 2320 * -ENODEV if no such device/adapter 2321 * -ETIME if timer expires 2322 * -ENOMEM if memory allocation error ··· 2553 * Outputs: None. 2554 * Return: 0 if successful 2555 * -EFAULT if data unavailable 2556 + * -EBUSY if previous command timeout and IOC reset is not complete. 2557 * -ENODEV if no such device/adapter 2558 * -ETIME if timer expires 2559 * -ENOMEM if memory allocation error
+1 -1
drivers/message/fusion/mptscsih.c
··· 1736 fail_out: 1737 1738 /* 1739 - * Free task managment mf, and corresponding tm flags 1740 */ 1741 mpt_free_msg_frame(ioc, mf); 1742 hd->tmPending = 0;
··· 1736 fail_out: 1737 1738 /* 1739 + * Free task management mf, and corresponding tm flags 1740 */ 1741 mpt_free_msg_frame(ioc, mf); 1742 hd->tmPending = 0;
+1 -1
drivers/message/i2o/iop.c
··· 916 * status block. The status block could then be accessed through 917 * c->status_block. 918 * 919 - * Returns 0 on sucess or negative error code on failure. 920 */ 921 int i2o_status_get(struct i2o_controller *c) 922 {
··· 916 * status block. The status block could then be accessed through 917 * c->status_block. 918 * 919 + * Returns 0 on success or negative error code on failure. 920 */ 921 int i2o_status_get(struct i2o_controller *c) 922 {
+1 -1
drivers/mtd/devices/doc2000.c
··· 376 * hardware restriction. */ 377 if (doc->mfr) { 378 if (doc->mfr == mfr && doc->id == id) 379 - return 1; /* This is another the same the first */ 380 else 381 printk(KERN_WARNING 382 "Flash chip at floor %d, chip %d is different:\n",
··· 376 * hardware restriction. */ 377 if (doc->mfr) { 378 if (doc->mfr == mfr && doc->id == id) 379 + return 1; /* This is the same as the first */ 380 else 381 printk(KERN_WARNING 382 "Flash chip at floor %d, chip %d is different:\n",
+3 -3
drivers/mtd/nand/autcpu12.c
··· 20 * 21 * 02-12-2002 TG Cleanup of module params 22 * 23 - * 02-20-2002 TG adjusted for different rd/wr adress support 24 * added support for read device ready/busy line 25 * added page_cache 26 * ··· 144 goto out; 145 } 146 147 - /* map physical adress */ 148 autcpu12_fio_base = ioremap(AUTCPU12_PHYS_SMC, SZ_1K); 149 if (!autcpu12_fio_base) { 150 printk("Ioremap autcpu12 SmartMedia Card failed\n"); ··· 227 /* Release resources, unregister device */ 228 nand_release(autcpu12_mtd); 229 230 - /* unmap physical adress */ 231 iounmap(autcpu12_fio_base); 232 233 /* Free the MTD device structure */
··· 20 * 21 * 02-12-2002 TG Cleanup of module params 22 * 23 + * 02-20-2002 TG adjusted for different rd/wr address support 24 * added support for read device ready/busy line 25 * added page_cache 26 * ··· 144 goto out; 145 } 146 147 + /* map physical address */ 148 autcpu12_fio_base = ioremap(AUTCPU12_PHYS_SMC, SZ_1K); 149 if (!autcpu12_fio_base) { 150 printk("Ioremap autcpu12 SmartMedia Card failed\n"); ··· 227 /* Release resources, unregister device */ 228 nand_release(autcpu12_mtd); 229 230 + /* unmap physical address */ 231 iounmap(autcpu12_fio_base); 232 233 /* Free the MTD device structure */
+1 -1
drivers/mtd/nand/bf5xx_nand.c
··· 4 * http://blackfin.uclinux.org/ 5 * Bryan Wu <bryan.wu@analog.com> 6 * 7 - * Blackfin BF5xx on-chip NAND flash controler driver 8 * 9 * Derived from drivers/mtd/nand/s3c2410.c 10 * Copyright (c) 2007 Ben Dooks <ben@simtec.co.uk>
··· 4 * http://blackfin.uclinux.org/ 5 * Bryan Wu <bryan.wu@analog.com> 6 * 7 + * Blackfin BF5xx on-chip NAND flash controller driver 8 * 9 * Derived from drivers/mtd/nand/s3c2410.c 10 * Copyright (c) 2007 Ben Dooks <ben@simtec.co.uk>
+1 -1
drivers/mtd/nand/cs553x_nand.c
··· 337 nand_release(cs553x_mtd[i]); 338 cs553x_mtd[i] = NULL; 339 340 - /* unmap physical adress */ 341 iounmap(mmio_base); 342 343 /* Free the MTD device structure */
··· 337 nand_release(cs553x_mtd[i]); 338 cs553x_mtd[i] = NULL; 339 340 + /* unmap physical address */ 341 iounmap(mmio_base); 342 343 /* Free the MTD device structure */
+1 -1
drivers/mtd/nand/edb7312.c
··· 125 return -ENOMEM; 126 } 127 128 - /* map physical adress */ 129 ep7312_fio_base = ioremap(ep7312_fio_pbase, SZ_1K); 130 if (!ep7312_fio_base) { 131 printk("ioremap EDB7312 NAND flash failed\n");
··· 125 return -ENOMEM; 126 } 127 128 + /* map physical address */ 129 ep7312_fio_base = ioremap(ep7312_fio_pbase, SZ_1K); 130 if (!ep7312_fio_base) { 131 printk("ioremap EDB7312 NAND flash failed\n");
+1 -1
drivers/mtd/nand/nand_base.c
··· 89 struct mtd_oob_ops *ops); 90 91 /* 92 - * For devices which display every fart in the system on a seperate LED. Is 93 * compiled away when LED support is disabled. 94 */ 95 DEFINE_LED_TRIGGER(nand_led_trigger);
··· 89 struct mtd_oob_ops *ops); 90 91 /* 92 + * For devices which display every fart in the system on a separate LED. Is 93 * compiled away when LED support is disabled. 94 */ 95 DEFINE_LED_TRIGGER(nand_led_trigger);
+1 -1
drivers/mtd/nand/nandsim.c
··· 210 #define STATE_CMD_RESET 0x0000000C /* reset */ 211 #define STATE_CMD_MASK 0x0000000F /* command states mask */ 212 213 - /* After an addres is input, the simulator goes to one of these states */ 214 #define STATE_ADDR_PAGE 0x00000010 /* full (row, column) address is accepted */ 215 #define STATE_ADDR_SEC 0x00000020 /* sector address was accepted */ 216 #define STATE_ADDR_ZERO 0x00000030 /* one byte zero address was accepted */
··· 210 #define STATE_CMD_RESET 0x0000000C /* reset */ 211 #define STATE_CMD_MASK 0x0000000F /* command states mask */ 212 213 + /* After an address is input, the simulator goes to one of these states */ 214 #define STATE_ADDR_PAGE 0x00000010 /* full (row, column) address is accepted */ 215 #define STATE_ADDR_SEC 0x00000020 /* sector address was accepted */ 216 #define STATE_ADDR_ZERO 0x00000030 /* one byte zero address was accepted */
+1 -1
drivers/mtd/nand/s3c2410.c
··· 8 * 9 * Changelog: 10 * 21-Sep-2004 BJD Initial version 11 - * 23-Sep-2004 BJD Mulitple device support 12 * 28-Sep-2004 BJD Fixed ECC placement for Hardware mode 13 * 12-Oct-2004 BJD Fixed errors in use of platform data 14 * 18-Feb-2005 BJD Fix sparse errors
··· 8 * 9 * Changelog: 10 * 21-Sep-2004 BJD Initial version 11 + * 23-Sep-2004 BJD Multiple device support 12 * 28-Sep-2004 BJD Fixed ECC placement for Hardware mode 13 * 12-Oct-2004 BJD Fixed errors in use of platform data 14 * 18-Feb-2005 BJD Fix sparse errors
+1 -1
drivers/mtd/nand/sharpsl.c
··· 165 return -ENOMEM; 166 } 167 168 - /* map physical adress */ 169 sharpsl_io_base = ioremap(sharpsl_phys_base, 0x1000); 170 if (!sharpsl_io_base) { 171 printk("ioremap to access Sharp SL NAND chip failed\n");
··· 165 return -ENOMEM; 166 } 167 168 + /* map physical address */ 169 sharpsl_io_base = ioremap(sharpsl_phys_base, 0x1000); 170 if (!sharpsl_io_base) { 171 printk("ioremap to access Sharp SL NAND chip failed\n");
+1 -1
drivers/mtd/nftlmount.c
··· 429 } 430 } 431 432 - /* calc_chain_lenght: Walk through a Virtual Unit Chain and estimate chain length */ 433 static int calc_chain_length(struct NFTLrecord *nftl, unsigned int first_block) 434 { 435 unsigned int length = 0, block = first_block;
··· 429 } 430 } 431 432 + /* calc_chain_length: Walk through a Virtual Unit Chain and estimate chain length */ 433 static int calc_chain_length(struct NFTLrecord *nftl, unsigned int first_block) 434 { 435 unsigned int length = 0, block = first_block;
+1 -1
drivers/net/eexpress.c
··· 9 * Many modifications, and currently maintained, by 10 * Philip Blundell <philb@gnu.org> 11 * Added the Compaq LTE Alan Cox <alan@redhat.com> 12 - * Added MCA support Adam Fritzler <mid@auk.cx> 13 * 14 * Note - this driver is experimental still - it has problems on faster 15 * machines. Someone needs to sit down and go through it line by line with
··· 9 * Many modifications, and currently maintained, by 10 * Philip Blundell <philb@gnu.org> 11 * Added the Compaq LTE Alan Cox <alan@redhat.com> 12 + * Added MCA support Adam Fritzler 13 * 14 * Note - this driver is experimental still - it has problems on faster 15 * machines. Someone needs to sit down and go through it line by line with
+2 -2
drivers/net/irda/ali-ircc.h
··· 173 174 struct frame_cb { 175 void *start; /* Start of frame in DMA mem */ 176 - int len; /* Lenght of frame in DMA mem */ 177 }; 178 179 struct tx_fifo { 180 struct frame_cb queue[MAX_TX_WINDOW]; /* Info about frames in queue */ 181 int ptr; /* Currently being sent */ 182 - int len; /* Lenght of queue */ 183 int free; /* Next free slot */ 184 void *tail; /* Next free start in DMA mem */ 185 };
··· 173 174 struct frame_cb { 175 void *start; /* Start of frame in DMA mem */ 176 + int len; /* Length of frame in DMA mem */ 177 }; 178 179 struct tx_fifo { 180 struct frame_cb queue[MAX_TX_WINDOW]; /* Info about frames in queue */ 181 int ptr; /* Currently being sent */ 182 + int len; /* Length of queue */ 183 int free; /* Next free slot */ 184 void *tail; /* Next free start in DMA mem */ 185 };
+2 -2
drivers/net/irda/nsc-ircc.h
··· 231 232 struct frame_cb { 233 void *start; /* Start of frame in DMA mem */ 234 - int len; /* Lenght of frame in DMA mem */ 235 }; 236 237 struct tx_fifo { 238 struct frame_cb queue[MAX_TX_WINDOW]; /* Info about frames in queue */ 239 int ptr; /* Currently being sent */ 240 - int len; /* Lenght of queue */ 241 int free; /* Next free slot */ 242 void *tail; /* Next free start in DMA mem */ 243 };
··· 231 232 struct frame_cb { 233 void *start; /* Start of frame in DMA mem */ 234 + int len; /* Length of frame in DMA mem */ 235 }; 236 237 struct tx_fifo { 238 struct frame_cb queue[MAX_TX_WINDOW]; /* Info about frames in queue */ 239 int ptr; /* Currently being sent */ 240 + int len; /* Length of queue */ 241 int free; /* Next free slot */ 242 void *tail; /* Next free start in DMA mem */ 243 };
+2 -2
drivers/net/irda/via-ircc.h
··· 54 55 struct frame_cb { 56 void *start; /* Start of frame in DMA mem */ 57 - int len; /* Lenght of frame in DMA mem */ 58 }; 59 60 struct tx_fifo { 61 struct frame_cb queue[MAX_TX_WINDOW + 2]; /* Info about frames in queue */ 62 int ptr; /* Currently being sent */ 63 - int len; /* Lenght of queue */ 64 int free; /* Next free slot */ 65 void *tail; /* Next free start in DMA mem */ 66 };
··· 54 55 struct frame_cb { 56 void *start; /* Start of frame in DMA mem */ 57 + int len; /* Length of frame in DMA mem */ 58 }; 59 60 struct tx_fifo { 61 struct frame_cb queue[MAX_TX_WINDOW + 2]; /* Info about frames in queue */ 62 int ptr; /* Currently being sent */ 63 + int len; /* Length of queue */ 64 int free; /* Next free slot */ 65 void *tail; /* Next free start in DMA mem */ 66 };
+1 -1
drivers/net/lib8390.c
··· 148 * 149 * "The author (me) didn't use spin_lock_irqsave because the slowness of the 150 * card means that approach caused horrible problems like losing serial data 151 - * at 38400 baud on some chips. Rememeber many 8390 nics on PCI were ISA 152 * chips with FPGA front ends. 153 * 154 * Ok the logic behind the 8390 is very simple:
··· 148 * 149 * "The author (me) didn't use spin_lock_irqsave because the slowness of the 150 * card means that approach caused horrible problems like losing serial data 151 + * at 38400 baud on some chips. Remember many 8390 nics on PCI were ISA 152 * chips with FPGA front ends. 153 * 154 * Ok the logic behind the 8390 is very simple:
+1 -1
drivers/net/skfp/ess.c
··· 598 req->cmd.sba_cmd = REQUEST_ALLOCATION ; 599 600 /* 601 - * set the parameter type and parameter lenght of all used 602 * parameters 603 */ 604
··· 598 req->cmd.sba_cmd = REQUEST_ALLOCATION ; 599 600 /* 601 + * set the parameter type and parameter length of all used 602 * parameters 603 */ 604
+1 -1
drivers/net/skfp/fplustm.c
··· 398 /* u_long td; transmit descriptor */ 399 /* struct fddi_mac *mac; mac frame pointer */ 400 /* unsigned off; start address within buffer memory */ 401 - /* int len ; lenght of the frame including the FC */ 402 { 403 int i ; 404 u_int *p ;
··· 398 /* u_long td; transmit descriptor */ 399 /* struct fddi_mac *mac; mac frame pointer */ 400 /* unsigned off; start address within buffer memory */ 401 + /* int len ; length of the frame including the FC */ 402 { 403 int i ; 404 u_int *p ;
+1 -1
drivers/net/skfp/hwmtm.c
··· 1185 1186 DB_RX("frame length = %d",len,0,4) ; 1187 /* 1188 - * check the frame_lenght and all error flags 1189 */ 1190 if (rfsw & (RX_MSRABT|RX_FS_E|RX_FS_CRC|RX_FS_IMPL)){ 1191 if (rfsw & RD_S_MSRABT) {
··· 1185 1186 DB_RX("frame length = %d",len,0,4) ; 1187 /* 1188 + * check the frame_length and all error flags 1189 */ 1190 if (rfsw & (RX_MSRABT|RX_FS_E|RX_FS_CRC|RX_FS_IMPL)){ 1191 if (rfsw & RD_S_MSRABT) {
+1 -1
drivers/net/tokenring/abyss.c
··· 10 * - Madge Smart 16/4 PCI Mk2 11 * 12 * Maintainer(s): 13 - * AF Adam Fritzler mid@auk.cx 14 * 15 * Modification History: 16 * 30-Dec-99 AF Split off from the tms380tr driver.
··· 10 * - Madge Smart 16/4 PCI Mk2 11 * 12 * Maintainer(s): 13 + * AF Adam Fritzler 14 * 15 * Modification History: 16 * 30-Dec-99 AF Split off from the tms380tr driver.
+1 -1
drivers/net/tokenring/abyss.h
··· 2 * abyss.h: Header for the abyss tms380tr module 3 * 4 * Authors: 5 - * - Adam Fritzler <mid@auk.cx> 6 */ 7 8 #ifndef __LINUX_MADGETR_H
··· 2 * abyss.h: Header for the abyss tms380tr module 3 * 4 * Authors: 5 + * - Adam Fritzler 6 */ 7 8 #ifndef __LINUX_MADGETR_H
+1 -1
drivers/net/tokenring/madgemc.c
··· 11 * - Madge Smart 16/4 Ringnode MC32 (??) 12 * 13 * Maintainer(s): 14 - * AF Adam Fritzler mid@auk.cx 15 * 16 * Modification History: 17 * 16-Jan-00 AF Created
··· 11 * - Madge Smart 16/4 Ringnode MC32 (??) 12 * 13 * Maintainer(s): 14 + * AF Adam Fritzler 15 * 16 * Modification History: 17 * 16-Jan-00 AF Created
+1 -1
drivers/net/tokenring/madgemc.h
··· 2 * madgemc.h: Header for the madgemc tms380tr module 3 * 4 * Authors: 5 - * - Adam Fritzler <mid@auk.cx> 6 */ 7 8 #ifndef __LINUX_MADGEMC_H
··· 2 * madgemc.h: Header for the madgemc tms380tr module 3 * 4 * Authors: 5 + * - Adam Fritzler 6 */ 7 8 #ifndef __LINUX_MADGEMC_H
+1 -1
drivers/net/tokenring/proteon.c
··· 12 * - Proteon 1392, 1392+ 13 * 14 * Maintainer(s): 15 - * AF Adam Fritzler mid@auk.cx 16 * JF Jochen Friedrich jochen@scram.de 17 * 18 * Modification History:
··· 12 * - Proteon 1392, 1392+ 13 * 14 * Maintainer(s): 15 + * AF Adam Fritzler 16 * JF Jochen Friedrich jochen@scram.de 17 * 18 * Modification History:
+1 -1
drivers/net/tokenring/skisa.c
··· 13 * - SysKonnect TR4/16(+) ISA (SK-4190) 14 * 15 * Maintainer(s): 16 - * AF Adam Fritzler mid@auk.cx 17 * JF Jochen Friedrich jochen@scram.de 18 * 19 * Modification History:
··· 13 * - SysKonnect TR4/16(+) ISA (SK-4190) 14 * 15 * Maintainer(s): 16 + * AF Adam Fritzler 17 * JF Jochen Friedrich jochen@scram.de 18 * 19 * Modification History:
+1 -1
drivers/net/tokenring/tms380tr.c
··· 30 * Maintainer(s): 31 * JS Jay Schulist jschlst@samba.org 32 * CG Christoph Goos cgoos@syskonnect.de 33 - * AF Adam Fritzler mid@auk.cx 34 * MLP Mike Phillips phillim@amtrak.com 35 * JF Jochen Friedrich jochen@scram.de 36 *
··· 30 * Maintainer(s): 31 * JS Jay Schulist jschlst@samba.org 32 * CG Christoph Goos cgoos@syskonnect.de 33 + * AF Adam Fritzler 34 * MLP Mike Phillips phillim@amtrak.com 35 * JF Jochen Friedrich jochen@scram.de 36 *
+1 -1
drivers/net/tokenring/tms380tr.h
··· 3 * 4 * Authors: 5 * - Christoph Goos <cgoos@syskonnect.de> 6 - * - Adam Fritzler <mid@auk.cx> 7 */ 8 9 #ifndef __LINUX_TMS380TR_H
··· 3 * 4 * Authors: 5 * - Christoph Goos <cgoos@syskonnect.de> 6 + * - Adam Fritzler 7 */ 8 9 #ifndef __LINUX_TMS380TR_H
+1 -1
drivers/net/tokenring/tmspci.c
··· 14 * - 3Com 3C339 Token Link Velocity 15 * 16 * Maintainer(s): 17 - * AF Adam Fritzler mid@auk.cx 18 * 19 * Modification History: 20 * 30-Dec-99 AF Split off from the tms380tr driver.
··· 14 * - 3Com 3C339 Token Link Velocity 15 * 16 * Maintainer(s): 17 + * AF Adam Fritzler 18 * 19 * Modification History: 20 * 30-Dec-99 AF Split off from the tms380tr driver.
+2 -2
drivers/net/wan/cycx_drv.c
··· 322 void __iomem *pt_boot_cmd = addr + CMD_OFFSET; 323 u32 i; 324 325 - /* boot buffer lenght */ 326 writew(CFM_LOAD_BUFSZ, pt_boot_cmd + sizeof(u16)); 327 writew(GEN_DEFPAR, pt_boot_cmd); 328 ··· 353 void __iomem *pt_boot_cmd = addr + CMD_OFFSET; 354 u32 i; 355 356 - /* boot buffer lenght */ 357 writew(CFM_LOAD_BUFSZ, pt_boot_cmd + sizeof(u16)); 358 writew(GEN_DEFPAR, pt_boot_cmd); 359
··· 322 void __iomem *pt_boot_cmd = addr + CMD_OFFSET; 323 u32 i; 324 325 + /* boot buffer length */ 326 writew(CFM_LOAD_BUFSZ, pt_boot_cmd + sizeof(u16)); 327 writew(GEN_DEFPAR, pt_boot_cmd); 328 ··· 353 void __iomem *pt_boot_cmd = addr + CMD_OFFSET; 354 u32 i; 355 356 + /* boot buffer length */ 357 writew(CFM_LOAD_BUFSZ, pt_boot_cmd + sizeof(u16)); 358 writew(GEN_DEFPAR, pt_boot_cmd); 359
+1 -1
drivers/net/wireless/libertas/scan.c
··· 1473 * Called via lbs_prepare_and_send_command(priv, CMD_802_11_SCAN, ...) 1474 * from cmd.c 1475 * 1476 - * Sends a fixed lenght data part (specifying the BSS type and BSSID filters) 1477 * as well as a variable number/length of TLVs to the firmware. 1478 * 1479 * @param priv A pointer to struct lbs_private structure
··· 1473 * Called via lbs_prepare_and_send_command(priv, CMD_802_11_SCAN, ...) 1474 * from cmd.c 1475 * 1476 + * Sends a fixed length data part (specifying the BSS type and BSSID filters) 1477 * as well as a variable number/length of TLVs to the firmware. 1478 * 1479 * @param priv A pointer to struct lbs_private structure
+1 -1
drivers/nubus/nubus.c
··· 352 resource blocks. */ 353 354 /* FIXME: A lot of this stuff will eventually be useful after 355 - initializaton, for intelligently probing Ethernet and video chips, 356 among other things. The rest of it should go in the /proc code. 357 For now, we just use it to give verbose boot logs. */ 358
··· 352 resource blocks. */ 353 354 /* FIXME: A lot of this stuff will eventually be useful after 355 + initialization, for intelligently probing Ethernet and video chips, 356 among other things. The rest of it should go in the /proc code. 357 For now, we just use it to give verbose boot logs. */ 358
+2 -2
drivers/parisc/ccio-dma.c
··· 363 if (pages_needed <= 8) { 364 /* 365 * LAN traffic will not thrash the TLB IFF the same NIC 366 - * uses 8 adjacent pages to map seperate payload data. 367 * ie the same byte in the resource bit map. 368 */ 369 #if 0 ··· 1589 } 1590 1591 /** 1592 - * ccio_init - ccio initalization procedure. 1593 * 1594 * Register this driver. 1595 */
··· 363 if (pages_needed <= 8) { 364 /* 365 * LAN traffic will not thrash the TLB IFF the same NIC 366 + * uses 8 adjacent pages to map separate payload data. 367 * ie the same byte in the resource bit map. 368 */ 369 #if 0 ··· 1589 } 1590 1591 /** 1592 + * ccio_init - ccio initialization procedure. 1593 * 1594 * Register this driver. 1595 */
+1 -1
drivers/parisc/hppb.c
··· 95 }; 96 97 /** 98 - * hppb_init - HP-PB bus initalization procedure. 99 * 100 * Register this driver. 101 */
··· 95 }; 96 97 /** 98 + * hppb_init - HP-PB bus initialization procedure. 99 * 100 * Register this driver. 101 */
+1 -1
drivers/parport/probe.c
··· 163 idlens[1] = idlens[0]+2; 164 if (belen != lelen) { 165 int off = 2; 166 - /* Don't try lenghts of 0x100 and 0x200 as 1 and 2 */ 167 if (idlens[0] <= 2) 168 off = 0; 169 idlens[off] = max(belen, lelen);
··· 163 idlens[1] = idlens[0]+2; 164 if (belen != lelen) { 165 int off = 2; 166 + /* Don't try lengths of 0x100 and 0x200 as 1 and 2 */ 167 if (idlens[0] <= 2) 168 off = 0; 169 idlens[off] = max(belen, lelen);
+1 -1
drivers/pcmcia/m32r_pcc.c
··· 368 handled = 1; 369 irc = pcc_get(i, PCIRC); 370 irc >>=16; 371 - debug(2, "m32r-pcc:interrput: socket %d pcirc 0x%02x ", i, irc); 372 if (!irc) 373 continue; 374
··· 368 handled = 1; 369 irc = pcc_get(i, PCIRC); 370 irc >>=16; 371 + debug(2, "m32r-pcc:interrupt: socket %d pcirc 0x%02x ", i, irc); 372 if (!irc) 373 continue; 374
+1 -1
drivers/pcmcia/m8xx_pcmcia.c
··· 851 I tried to control the CxOE signal with SS_OUTPUT_ENA, 852 but the reset signal seems connected via the 541. 853 If the CxOE is left high are some signals tristated and 854 - no pullups are present -> the cards act wierd. 855 So right now the buffers are enabled if the power is on. */ 856 857 if (state->Vcc || state->Vpp)
··· 851 I tried to control the CxOE signal with SS_OUTPUT_ENA, 852 but the reset signal seems connected via the 541. 853 If the CxOE is left high are some signals tristated and 854 + no pullups are present -> the cards act weird. 855 So right now the buffers are enabled if the power is on. */ 856 857 if (state->Vcc || state->Vpp)
+1 -1
drivers/scsi/NCR53C9x.h
··· 1 /* NCR53C9x.c: Defines and structures for the NCR53C9x generic driver. 2 * 3 - * Originaly esp.h: Defines and structures for the Sparc ESP 4 * (Enhanced SCSI Processor) driver under Linux. 5 * 6 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
··· 1 /* NCR53C9x.c: Defines and structures for the NCR53C9x generic driver. 2 * 3 + * Originally esp.h: Defines and structures for the Sparc ESP 4 * (Enhanced SCSI Processor) driver under Linux. 5 * 6 * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
+1 -1
drivers/scsi/aha1542.c
··· 21 * Modified by Chris Faulhaber <jedgar@fxp.org> 22 * Added module command-line options 23 * 19-Jul-99 24 - * Modified by Adam Fritzler <mid@auk.cx> 25 * Added proper detection of the AHA-1640 (MCA version of AHA-1540) 26 */ 27
··· 21 * Modified by Chris Faulhaber <jedgar@fxp.org> 22 * Added module command-line options 23 * 19-Jul-99 24 + * Modified by Adam Fritzler 25 * Added proper detection of the AHA-1640 (MCA version of AHA-1540) 26 */ 27
+1 -1
drivers/scsi/aic7xxx/aic79xx_inline.h
··· 417 - (uint8_t *)ahd->qoutfifo); 418 } 419 420 - /*********************** Miscelaneous Support Functions ***********************/ 421 static __inline struct ahd_initiator_tinfo * 422 ahd_fetch_transinfo(struct ahd_softc *ahd, 423 char channel, u_int our_id,
··· 417 - (uint8_t *)ahd->qoutfifo); 418 } 419 420 + /*********************** Miscellaneous Support Functions ***********************/ 421 static __inline struct ahd_initiator_tinfo * 422 ahd_fetch_transinfo(struct ahd_softc *ahd, 423 char channel, u_int our_id,
+1 -1
drivers/scsi/aic7xxx/aic79xx_osm.c
··· 325 " verbose Enable verbose/diagnostic logging\n" 326 " allow_memio Allow device registers to be memory mapped\n" 327 " debug Bitmask of debug values to enable\n" 328 - " no_reset Supress initial bus resets\n" 329 " extended Enable extended geometry on all controllers\n" 330 " periodic_otag Send an ordered tagged transaction\n" 331 " periodically to prevent tag starvation.\n"
··· 325 " verbose Enable verbose/diagnostic logging\n" 326 " allow_memio Allow device registers to be memory mapped\n" 327 " debug Bitmask of debug values to enable\n" 328 + " no_reset Suppress initial bus resets\n" 329 " extended Enable extended geometry on all controllers\n" 330 " periodic_otag Send an ordered tagged transaction\n" 331 " periodically to prevent tag starvation.\n"
+2 -2
drivers/scsi/aic7xxx/aic79xx_pci.c
··· 979 | AHD_FAINT_LED_BUG; 980 981 /* 982 - * IO Cell paramter setup. 983 */ 984 AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29); 985 ··· 1006 ahd->bugs |= AHD_INTCOLLISION_BUG|AHD_ABORT_LQI_BUG; 1007 1008 /* 1009 - * IO Cell paramter setup. 1010 */ 1011 AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29); 1012 AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVB);
··· 979 | AHD_FAINT_LED_BUG; 980 981 /* 982 + * IO Cell parameter setup. 983 */ 984 AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29); 985 ··· 1006 ahd->bugs |= AHD_INTCOLLISION_BUG|AHD_ABORT_LQI_BUG; 1007 1008 /* 1009 + * IO Cell parameter setup. 1010 */ 1011 AHD_SET_PRECOMP(ahd, AHD_PRECOMP_CUTBACK_29); 1012 AHD_SET_SLEWRATE(ahd, AHD_SLEWRATE_DEF_REVB);
+1 -1
drivers/scsi/aic7xxx/aic7xxx_inline.h
··· 229 return (ahc->name); 230 } 231 232 - /*********************** Miscelaneous Support Functions ***********************/ 233 234 static __inline void ahc_update_residual(struct ahc_softc *ahc, 235 struct scb *scb);
··· 229 return (ahc->name); 230 } 231 232 + /*********************** Miscellaneous Support Functions ***********************/ 233 234 static __inline void ahc_update_residual(struct ahc_softc *ahc, 235 struct scb *scb);
+1 -1
drivers/scsi/aic7xxx/aic7xxx_osm.c
··· 347 " debug Bitmask of debug values to enable\n" 348 " no_probe Toggle EISA/VLB controller probing\n" 349 " probe_eisa_vl Toggle EISA/VLB controller probing\n" 350 - " no_reset Supress initial bus resets\n" 351 " extended Enable extended geometry on all controllers\n" 352 " periodic_otag Send an ordered tagged transaction\n" 353 " periodically to prevent tag starvation.\n"
··· 347 " debug Bitmask of debug values to enable\n" 348 " no_probe Toggle EISA/VLB controller probing\n" 349 " probe_eisa_vl Toggle EISA/VLB controller probing\n" 350 + " no_reset Suppress initial bus resets\n" 351 " extended Enable extended geometry on all controllers\n" 352 " periodic_otag Send an ordered tagged transaction\n" 353 " periodically to prevent tag starvation.\n"
+1 -1
drivers/scsi/ipr.c
··· 7053 * where it can accept new commands. 7054 7055 * Return value: 7056 - * 0 on sucess / -EIO on failure 7057 **/ 7058 static int __devinit ipr_probe_ioa_part2(struct ipr_ioa_cfg *ioa_cfg) 7059 {
··· 7053 * where it can accept new commands. 7054 7055 * Return value: 7056 + * 0 on success / -EIO on failure 7057 **/ 7058 static int __devinit ipr_probe_ioa_part2(struct ipr_ioa_cfg *ioa_cfg) 7059 {
+1 -1
drivers/scsi/ips.c
··· 1309 cstatus.value = (*ha->func.statupd) (ha); 1310 1311 if (cstatus.fields.command_id > (IPS_MAX_CMDS - 1)) { 1312 - /* Spurious Interupt ? */ 1313 continue; 1314 } 1315
··· 1309 cstatus.value = (*ha->func.statupd) (ha); 1310 1311 if (cstatus.fields.command_id > (IPS_MAX_CMDS - 1)) { 1312 + /* Spurious Interrupt ? */ 1313 continue; 1314 } 1315
+1 -1
drivers/scsi/lpfc/lpfc.h
··· 325 326 #define WORKER_MBOX_TMO 0x100 /* hba: MBOX timeout */ 327 #define WORKER_HB_TMO 0x200 /* hba: Heart beat timeout */ 328 - #define WORKER_FABRIC_BLOCK_TMO 0x400 /* hba: fabric block timout */ 329 #define WORKER_RAMP_DOWN_QUEUE 0x800 /* hba: Decrease Q depth */ 330 #define WORKER_RAMP_UP_QUEUE 0x1000 /* hba: Increase Q depth */ 331
··· 325 326 #define WORKER_MBOX_TMO 0x100 /* hba: MBOX timeout */ 327 #define WORKER_HB_TMO 0x200 /* hba: Heart beat timeout */ 328 + #define WORKER_FABRIC_BLOCK_TMO 0x400 /* hba: fabric block timeout */ 329 #define WORKER_RAMP_DOWN_QUEUE 0x800 /* hba: Decrease Q depth */ 330 #define WORKER_RAMP_UP_QUEUE 0x1000 /* hba: Increase Q depth */ 331
+1 -1
drivers/scsi/lpfc/lpfc_mbox.c
··· 880 void 881 lpfc_mbox_cmpl_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq) 882 { 883 - /* This function expects to be called from interupt context */ 884 spin_lock(&phba->hbalock); 885 list_add_tail(&mbq->list, &phba->sli.mboxq_cmpl); 886 spin_unlock(&phba->hbalock);
··· 880 void 881 lpfc_mbox_cmpl_put(struct lpfc_hba * phba, LPFC_MBOXQ_t * mbq) 882 { 883 + /* This function expects to be called from interrupt context */ 884 spin_lock(&phba->hbalock); 885 list_add_tail(&mbq->list, &phba->sli.mboxq_cmpl); 886 spin_unlock(&phba->hbalock);
+5 -5
drivers/scsi/megaraid/megaraid_mbox.c
··· 3464 /* 3465 * START: Interface for the common management module 3466 * 3467 - * This is the module, which interfaces with the common mangement module to 3468 * provide support for ioctl and sysfs 3469 */ 3470 3471 /** 3472 - * megaraid_cmm_register - register with the mangement module 3473 * @adapter : HBA soft state 3474 * 3475 * Register with the management module, which allows applications to issue ··· 3557 3558 3559 /** 3560 - * megaraid_cmm_unregister - un-register with the mangement module 3561 * @adapter : HBA soft state 3562 * 3563 * Un-register with the management module. ··· 3579 * @kioc : CMM interface packet 3580 * @action : command action 3581 * 3582 - * This routine is invoked whenever the Common Mangement Module (CMM) has a 3583 * command for us. The 'action' parameter specifies if this is a new command 3584 * or otherwise. 3585 */ ··· 3944 * 3945 * This routine will be called whenever user reads the logical drive 3946 * attributes, go get the current logical drive mapping table from the 3947 - * firmware. We use the managment API's to issue commands to the controller. 3948 * 3949 * NOTE: The commands issuance functionality is not generalized and 3950 * implemented in context of "get ld map" command only. If required, the
··· 3464 /* 3465 * START: Interface for the common management module 3466 * 3467 + * This is the module, which interfaces with the common management module to 3468 * provide support for ioctl and sysfs 3469 */ 3470 3471 /** 3472 + * megaraid_cmm_register - register with the management module 3473 * @adapter : HBA soft state 3474 * 3475 * Register with the management module, which allows applications to issue ··· 3557 3558 3559 /** 3560 + * megaraid_cmm_unregister - un-register with the management module 3561 * @adapter : HBA soft state 3562 * 3563 * Un-register with the management module. ··· 3579 * @kioc : CMM interface packet 3580 * @action : command action 3581 * 3582 + * This routine is invoked whenever the Common Management Module (CMM) has a 3583 * command for us. The 'action' parameter specifies if this is a new command 3584 * or otherwise. 3585 */ ··· 3944 * 3945 * This routine will be called whenever user reads the logical drive 3946 * attributes, go get the current logical drive mapping table from the 3947 + * firmware. We use the management API's to issue commands to the controller. 3948 * 3949 * NOTE: The commands issuance functionality is not generalized and 3950 * implemented in context of "get ld map" command only. If required, the
+1 -1
drivers/scsi/qla2xxx/qla_gs.c
··· 1094 } 1095 1096 /** 1097 - * qla2x00_mgmt_svr_login() - Login to fabric Managment Service. 1098 * @ha: HA context 1099 * 1100 * Returns 0 on success.
··· 1094 } 1095 1096 /** 1097 + * qla2x00_mgmt_svr_login() - Login to fabric Management Service. 1098 * @ha: HA context 1099 * 1100 * Returns 0 on success.
+1 -1
drivers/scsi/qla4xxx/ql4_def.h
··· 121 #define MAX_REQS_SERVICED_PER_INTR 16 122 123 #define ISCSI_IPADDR_SIZE 4 /* IP address size */ 124 - #define ISCSI_ALIAS_SIZE 32 /* ISCSI Alais name size */ 125 #define ISCSI_NAME_SIZE 0xE0 /* ISCSI Name size */ 126 127 #define LSDW(x) ((u32)((u64)(x)))
··· 121 #define MAX_REQS_SERVICED_PER_INTR 16 122 123 #define ISCSI_IPADDR_SIZE 4 /* IP address size */ 124 + #define ISCSI_ALIAS_SIZE 32 /* ISCSI Alias name size */ 125 #define ISCSI_NAME_SIZE 0xE0 /* ISCSI Name size */ 126 127 #define LSDW(x) ((u32)((u64)(x)))
+1 -1
drivers/scsi/qla4xxx/ql4_init.c
··· 1098 } 1099 config_chip = 1; 1100 1101 - /* Reset clears the semaphore, so aquire again */ 1102 if (ql4xxx_lock_drvr_wait(ha) != QLA_SUCCESS) 1103 return QLA_ERROR; 1104 }
··· 1098 } 1099 config_chip = 1; 1100 1101 + /* Reset clears the semaphore, so acquire again */ 1102 if (ql4xxx_lock_drvr_wait(ha) != QLA_SUCCESS) 1103 return QLA_ERROR; 1104 }
+1 -1
drivers/scsi/scsi_tgt_lib.c
··· 320 EXPORT_SYMBOL_GPL(scsi_tgt_queue_command); 321 322 /* 323 - * This is run from a interrpt handler normally and the unmap 324 * needs process context so we must queue 325 */ 326 static void scsi_tgt_cmd_done(struct scsi_cmnd *cmd)
··· 320 EXPORT_SYMBOL_GPL(scsi_tgt_queue_command); 321 322 /* 323 + * This is run from a interrupt handler normally and the unmap 324 * needs process context so we must queue 325 */ 326 static void scsi_tgt_cmd_done(struct scsi_cmnd *cmd)
+1 -1
drivers/scsi/scsi_transport_sas.c
··· 6 * 7 * The SAS transport class contains common code to deal with SAS HBAs, 8 * an aproximated representation of SAS topologies in the driver model, 9 - * and various sysfs attributes to expose these topologies and managment 10 * interfaces to userspace. 11 * 12 * In addition to the basic SCSI core objects this transport class
··· 6 * 7 * The SAS transport class contains common code to deal with SAS HBAs, 8 * an aproximated representation of SAS topologies in the driver model, 9 + * and various sysfs attributes to expose these topologies and management 10 * interfaces to userspace. 11 * 12 * In addition to the basic SCSI core objects this transport class
+2 -2
drivers/serial/Kconfig
··· 1295 depends on SERIAL_NETX 1296 select SERIAL_CORE_CONSOLE 1297 help 1298 - If you have enabled the serial port on the Motorola IMX 1299 - CPU you can make it the console by answering Y to this option. 1300 1301 config SERIAL_OF_PLATFORM 1302 tristate "Serial port on Open Firmware platform bus"
··· 1295 depends on SERIAL_NETX 1296 select SERIAL_CORE_CONSOLE 1297 help 1298 + If you have enabled the serial port on the Hilscher NetX SoC 1299 + you can make it the console by answering Y to this option. 1300 1301 config SERIAL_OF_PLATFORM 1302 tristate "Serial port on Open Firmware platform bus"
+1 -1
drivers/serial/icom.h
··· 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 */ 22 23 - #include<linux/serial_core.h> 24 25 #define BAUD_TABLE_LIMIT ((sizeof(icom_acfg_baud)/sizeof(int)) - 1) 26 static int icom_acfg_baud[] = {
··· 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 */ 22 23 + #include <linux/serial_core.h> 24 25 #define BAUD_TABLE_LIMIT ((sizeof(icom_acfg_baud)/sizeof(int)) - 1) 26 static int icom_acfg_baud[] = {
+1 -1
drivers/serial/mux.c
··· 582 }; 583 584 /** 585 - * mux_init - Serial MUX initalization procedure. 586 * 587 * Register the Serial MUX driver. 588 */
··· 582 }; 583 584 /** 585 + * mux_init - Serial MUX initialization procedure. 586 * 587 * Register the Serial MUX driver. 588 */
+1 -1
drivers/spi/spi_imx.c
··· 157 #define SPI_FIFO_BYTE_WIDTH (2) 158 #define SPI_FIFO_OVERFLOW_MARGIN (2) 159 160 - /* DMA burst lenght for half full/empty request trigger */ 161 #define SPI_DMA_BLR (SPI_FIFO_DEPTH * SPI_FIFO_BYTE_WIDTH / 2) 162 163 /* Dummy char output to achieve reads.
··· 157 #define SPI_FIFO_BYTE_WIDTH (2) 158 #define SPI_FIFO_OVERFLOW_MARGIN (2) 159 160 + /* DMA burst length for half full/empty request trigger */ 161 #define SPI_DMA_BLR (SPI_FIFO_DEPTH * SPI_FIFO_BYTE_WIDTH / 2) 162 163 /* Dummy char output to achieve reads.
+1 -1
drivers/ssb/b43_pci_bridge.c
··· 1 /* 2 * Broadcom 43xx PCI-SSB bridge module 3 * 4 - * This technically is a seperate PCI driver module, but 5 * because of its small size we include it in the SSB core 6 * instead of creating a standalone module. 7 *
··· 1 /* 2 * Broadcom 43xx PCI-SSB bridge module 3 * 4 + * This technically is a separate PCI driver module, but 5 * because of its small size we include it in the SSB core 6 * instead of creating a standalone module. 7 *
+1 -1
drivers/video/aty/radeon_pm.c
··· 2561 pci_read_config_dword(rinfo->pdev, i * 4, 2562 &rinfo->cfg_save[i]); 2563 2564 - /* Switch PCI power managment to D2. */ 2565 pci_disable_device(rinfo->pdev); 2566 for (;;) { 2567 pci_read_config_word(
··· 2561 pci_read_config_dword(rinfo->pdev, i * 4, 2562 &rinfo->cfg_save[i]); 2563 2564 + /* Switch PCI power management to D2. */ 2565 pci_disable_device(rinfo->pdev); 2566 for (;;) { 2567 pci_read_config_word(
+1 -1
drivers/video/cyblafb.c
··· 1156 // need altered timings to display correctly. So I decided that it is much 1157 // better to provide a limited optimized set of modes plus the option of 1158 // using the mode in effect at startup time (might be selected using the 1159 - // vga=??? paramter). After that the user might use fbset to select any 1160 // mode he likes, check_var will not try to alter geometry parameters as 1161 // it would be necessary otherwise. 1162 //
··· 1156 // need altered timings to display correctly. So I decided that it is much 1157 // better to provide a limited optimized set of modes plus the option of 1158 // using the mode in effect at startup time (might be selected using the 1159 + // vga=??? parameter). After that the user might use fbset to select any 1160 // mode he likes, check_var will not try to alter geometry parameters as 1161 // it would be necessary otherwise. 1162 //
+1 -1
drivers/video/intelfb/intelfb.h
··· 111 112 #define FIXED_MODE(d) ((d)->fixed_mode) 113 114 - /*** Driver paramters ***/ 115 116 #define RINGBUFFER_SIZE KB(64) 117 #define HW_CURSOR_SIZE KB(4)
··· 111 112 #define FIXED_MODE(d) ((d)->fixed_mode) 113 114 + /*** Driver parameters ***/ 115 116 #define RINGBUFFER_SIZE KB(64) 117 #define HW_CURSOR_SIZE KB(4)
+1 -1
drivers/video/omap/lcdc.c
··· 312 /* 313 * Change to a new video mode. We defer this to a later time to avoid any 314 * flicker and not to mess up the current LCD DMA context. For this we disable 315 - * the LCD controler, which will generate a DONE irq after the last frame has 316 * been transferred. Then it'll be safe to reconfigure both the LCD controller 317 * as well as the LCD DMA. 318 */
··· 312 /* 313 * Change to a new video mode. We defer this to a later time to avoid any 314 * flicker and not to mess up the current LCD DMA context. For this we disable 315 + * the LCD controller, which will generate a DONE irq after the last frame has 316 * been transferred. Then it'll be safe to reconfigure both the LCD controller 317 * as well as the LCD DMA. 318 */
+1 -1
drivers/video/sm501fb.c
··· 48 HEAD_PANEL = 1, 49 }; 50 51 - /* SM501 memory adress */ 52 struct sm501_mem { 53 unsigned long size; 54 unsigned long sm_addr;
··· 48 HEAD_PANEL = 1, 49 }; 50 51 + /* SM501 memory address */ 52 struct sm501_mem { 53 unsigned long size; 54 unsigned long sm_addr;
+1 -1
drivers/watchdog/shwdt.c
··· 52 * overflow periods respectively. 53 * 54 * Also, since we can't really expect userspace to be responsive enough 55 - * before the overflow happens, we maintain two seperate timers .. One in 56 * the kernel for clearing out WOVF every 2ms or so (again, this depends on 57 * HZ == 1000), and another for monitoring userspace writes to the WDT device. 58 *
··· 52 * overflow periods respectively. 53 * 54 * Also, since we can't really expect userspace to be responsive enough 55 + * before the overflow happens, we maintain two separate timers .. One in 56 * the kernel for clearing out WOVF every 2ms or so (again, this depends on 57 * HZ == 1000), and another for monitoring userspace writes to the WDT device. 58 *
+1 -1
fs/befs/btree.c
··· 232 * @key: Key string to lookup in btree 233 * @value: Value stored with @key 234 * 235 - * On sucess, returns BEFS_OK and sets *@value to the value stored 236 * with @key (usually the disk block number of an inode). 237 * 238 * On failure, returns BEFS_ERR or BEFS_BT_NOT_FOUND.
··· 232 * @key: Key string to lookup in btree 233 * @value: Value stored with @key 234 * 235 + * On success, returns BEFS_OK and sets *@value to the value stored 236 * with @key (usually the disk block number of an inode). 237 * 238 * On failure, returns BEFS_ERR or BEFS_BT_NOT_FOUND.
+1 -1
fs/befs/datastream.c
··· 236 as in the indirect region code). 237 238 When/if blockno is found, if blockno is inside of a block 239 - run as stored on disk, we offset the start and lenght members 240 of the block run, so that blockno is the start and len is 241 still valid (the run ends in the same place). 242
··· 236 as in the indirect region code). 237 238 When/if blockno is found, if blockno is inside of a block 239 + run as stored on disk, we offset the start and length members 240 of the block run, so that blockno is the start and len is 241 still valid (the run ends in the same place). 242
+1 -1
fs/binfmt_elf.c
··· 117 return 0; 118 } 119 120 - /* Let's use some macros to make this stack manipulation a litle clearer */ 121 #ifdef CONFIG_STACK_GROWSUP 122 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items)) 123 #define STACK_ROUND(sp, items) \
··· 117 return 0; 118 } 119 120 + /* Let's use some macros to make this stack manipulation a little clearer */ 121 #ifdef CONFIG_STACK_GROWSUP 122 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items)) 123 #define STACK_ROUND(sp, items) \
+1 -1
fs/freevxfs/vxfs_dir.h
··· 41 * VxFS directory block header. 42 * 43 * This entry is the head of every filesystem block in a directory. 44 - * It is used for free space managment and additionally includes 45 * a hash for speeding up directory search (lookup). 46 * 47 * The hash may be empty and in fact we do not use it all in the
··· 41 * VxFS directory block header. 42 * 43 * This entry is the head of every filesystem block in a directory. 44 + * It is used for free space management and additionally includes 45 * a hash for speeding up directory search (lookup). 46 * 47 * The hash may be empty and in fact we do not use it all in the
+1 -1
fs/freevxfs/vxfs_immed.c
··· 54 }; 55 56 /* 57 - * Adress space operations for immed files and directories. 58 */ 59 const struct address_space_operations vxfs_immed_aops = { 60 .readpage = vxfs_immed_readpage,
··· 54 }; 55 56 /* 57 + * Address space operations for immed files and directories. 58 */ 59 const struct address_space_operations vxfs_immed_aops = { 60 .readpage = vxfs_immed_readpage,
+1 -1
fs/gfs2/recovery.c
··· 450 fs_info(sdp, "jid=%u: Trying to acquire journal lock...\n", 451 jd->jd_jid); 452 453 - /* Aquire the journal lock so we can do recovery */ 454 455 error = gfs2_glock_nq_num(sdp, jd->jd_jid, &gfs2_journal_glops, 456 LM_ST_EXCLUSIVE,
··· 450 fs_info(sdp, "jid=%u: Trying to acquire journal lock...\n", 451 jd->jd_jid); 452 453 + /* Acquire the journal lock so we can do recovery */ 454 455 error = gfs2_glock_nq_num(sdp, jd->jd_jid, &gfs2_journal_glops, 456 LM_ST_EXCLUSIVE,
+1 -1
fs/jffs2/readinode.c
··· 741 * are not obsolete. 742 * 743 * Of course, this optimization only makes sense in case 744 - * of NAND flashes (or other flashes whith 745 * !jffs2_can_mark_obsolete()), since on NOR flashes 746 * nodes are marked obsolete physically. 747 *
··· 741 * are not obsolete. 742 * 743 * Of course, this optimization only makes sense in case 744 + * of NAND flashes (or other flashes with 745 * !jffs2_can_mark_obsolete()), since on NOR flashes 746 * nodes are marked obsolete physically. 747 *
+1 -1
fs/jfs/jfs_xtree.c
··· 3965 * xtTruncate_pmap() 3966 * 3967 * function: 3968 - * Perform truncate to zero lenghth for deleted file, leaving the 3969 * the xtree and working map untouched. This allows the file to 3970 * be accessed via open file handles, while the delete of the file 3971 * is committed to disk.
··· 3965 * xtTruncate_pmap() 3966 * 3967 * function: 3968 + * Perform truncate to zero length for deleted file, leaving the 3969 * the xtree and working map untouched. This allows the file to 3970 * be accessed via open file handles, while the delete of the file 3971 * is committed to disk.
+1 -1
fs/ocfs2/alloc.c
··· 3338 if (insert->ins_split != SPLIT_NONE) { 3339 /* 3340 * We could call ocfs2_insert_at_leaf() for some types 3341 - * of splits, but it's easier to just let one seperate 3342 * function sort it all out. 3343 */ 3344 ocfs2_split_record(inode, left_path, right_path,
··· 3338 if (insert->ins_split != SPLIT_NONE) { 3339 /* 3340 * We could call ocfs2_insert_at_leaf() for some types 3341 + * of splits, but it's easier to just let one separate 3342 * function sort it all out. 3343 */ 3344 ocfs2_split_record(inode, left_path, right_path,
+1 -1
fs/ocfs2/dir.c
··· 1215 down_write(&oi->ip_alloc_sem); 1216 1217 /* 1218 - * Prepare for worst case allocation scenario of two seperate 1219 * extents. 1220 */ 1221 if (alloc == 2)
··· 1215 down_write(&oi->ip_alloc_sem); 1216 1217 /* 1218 + * Prepare for worst case allocation scenario of two separate 1219 * extents. 1220 */ 1221 if (alloc == 2)
+1 -1
fs/ocfs2/ocfs1_fs_compat.h
··· 77 { 78 /*00*/ __u32 curr_master; 79 __u8 file_lock; 80 - __u8 compat_pad[3]; /* Not in orignal definition. Used to 81 make the already existing alignment 82 explicit */ 83 __u64 last_write_time;
··· 77 { 78 /*00*/ __u32 curr_master; 79 __u8 file_lock; 80 + __u8 compat_pad[3]; /* Not in original definition. Used to 81 make the already existing alignment 82 explicit */ 83 __u64 last_write_time;
+1 -1
fs/ocfs2/suballoc.c
··· 646 * sync-data inodes." 647 * 648 * Note: OCFS2 already does this differently for metadata vs data 649 - * allocations, as those bitmaps are seperate and undo access is never 650 * called on a metadata group descriptor. 651 */ 652 static int ocfs2_test_bg_bit_allocatable(struct buffer_head *bg_bh,
··· 646 * sync-data inodes." 647 * 648 * Note: OCFS2 already does this differently for metadata vs data 649 + * allocations, as those bitmaps are separate and undo access is never 650 * called on a metadata group descriptor. 651 */ 652 static int ocfs2_test_bg_bit_allocatable(struct buffer_head *bg_bh,
+3 -3
fs/reiserfs/bitmap.c
··· 272 273 /* If we don't have cached information on this bitmap block, we're 274 * going to have to load it later anyway. Loading it here allows us 275 - * to make a better decision. This favors long-term performace gain 276 * with a better on-disk layout vs. a short term gain of skipping the 277 * read and potentially having a bad placement. */ 278 if (info->free_count == UINT_MAX) { ··· 663 664 /* 665 * Relocation based on dirid, hashing them into a given bitmap block 666 - * files. Formatted nodes are unaffected, a seperate policy covers them 667 */ 668 static void dirid_groups(reiserfs_blocknr_hint_t * hint) 669 { ··· 688 689 /* 690 * Relocation based on oid, hashing them into a given bitmap block 691 - * files. Formatted nodes are unaffected, a seperate policy covers them 692 */ 693 static void oid_groups(reiserfs_blocknr_hint_t * hint) 694 {
··· 272 273 /* If we don't have cached information on this bitmap block, we're 274 * going to have to load it later anyway. Loading it here allows us 275 + * to make a better decision. This favors long-term performance gain 276 * with a better on-disk layout vs. a short term gain of skipping the 277 * read and potentially having a bad placement. */ 278 if (info->free_count == UINT_MAX) { ··· 663 664 /* 665 * Relocation based on dirid, hashing them into a given bitmap block 666 + * files. Formatted nodes are unaffected, a separate policy covers them 667 */ 668 static void dirid_groups(reiserfs_blocknr_hint_t * hint) 669 { ··· 688 689 /* 690 * Relocation based on oid, hashing them into a given bitmap block 691 + * files. Formatted nodes are unaffected, a separate policy covers them 692 */ 693 static void oid_groups(reiserfs_blocknr_hint_t * hint) 694 {
+1 -1
fs/signalfd.c
··· 66 BUILD_BUG_ON(sizeof(struct signalfd_siginfo) != 128); 67 68 /* 69 - * Unused memebers should be zero ... 70 */ 71 err = __clear_user(uinfo, sizeof(*uinfo)); 72
··· 66 BUILD_BUG_ON(sizeof(struct signalfd_siginfo) != 128); 67 68 /* 69 + * Unused members should be zero ... 70 */ 71 err = __clear_user(uinfo, sizeof(*uinfo)); 72
+1 -1
include/acpi/acpixf.h
··· 85 #endif 86 87 /* 88 - * ACPI Memory managment 89 */ 90 void *acpi_allocate(u32 size); 91
··· 85 #endif 86 87 /* 88 + * ACPI Memory management 89 */ 90 void *acpi_allocate(u32 size); 91
+1 -1
include/acpi/processor.h
··· 182 /* Limit Interface */ 183 184 struct acpi_processor_lx { 185 - int px; /* performace state */ 186 int tx; /* throttle level */ 187 }; 188
··· 182 /* Limit Interface */ 183 184 struct acpi_processor_lx { 185 + int px; /* performance state */ 186 int tx; /* throttle level */ 187 }; 188
+16 -16
include/asm-arm/arch-ixp4xx/ixp4xx-regs.h
··· 587 #define UICR1_IM14 (1 << 6) /* Interrupt mask ep 14 */ 588 #define UICR1_IM15 (1 << 7) /* Interrupt mask ep 15 */ 589 590 - #define USIR0_IR0 (1 << 0) /* Interrup request ep 0 */ 591 - #define USIR0_IR1 (1 << 1) /* Interrup request ep 1 */ 592 - #define USIR0_IR2 (1 << 2) /* Interrup request ep 2 */ 593 - #define USIR0_IR3 (1 << 3) /* Interrup request ep 3 */ 594 - #define USIR0_IR4 (1 << 4) /* Interrup request ep 4 */ 595 - #define USIR0_IR5 (1 << 5) /* Interrup request ep 5 */ 596 - #define USIR0_IR6 (1 << 6) /* Interrup request ep 6 */ 597 - #define USIR0_IR7 (1 << 7) /* Interrup request ep 7 */ 598 599 - #define USIR1_IR8 (1 << 0) /* Interrup request ep 8 */ 600 - #define USIR1_IR9 (1 << 1) /* Interrup request ep 9 */ 601 - #define USIR1_IR10 (1 << 2) /* Interrup request ep 10 */ 602 - #define USIR1_IR11 (1 << 3) /* Interrup request ep 11 */ 603 - #define USIR1_IR12 (1 << 4) /* Interrup request ep 12 */ 604 - #define USIR1_IR13 (1 << 5) /* Interrup request ep 13 */ 605 - #define USIR1_IR14 (1 << 6) /* Interrup request ep 14 */ 606 - #define USIR1_IR15 (1 << 7) /* Interrup request ep 15 */ 607 608 #define DCMD_LENGTH 0x01fff /* length mask (max = 8K - 1) */ 609
··· 587 #define UICR1_IM14 (1 << 6) /* Interrupt mask ep 14 */ 588 #define UICR1_IM15 (1 << 7) /* Interrupt mask ep 15 */ 589 590 + #define USIR0_IR0 (1 << 0) /* Interrupt request ep 0 */ 591 + #define USIR0_IR1 (1 << 1) /* Interrupt request ep 1 */ 592 + #define USIR0_IR2 (1 << 2) /* Interrupt request ep 2 */ 593 + #define USIR0_IR3 (1 << 3) /* Interrupt request ep 3 */ 594 + #define USIR0_IR4 (1 << 4) /* Interrupt request ep 4 */ 595 + #define USIR0_IR5 (1 << 5) /* Interrupt request ep 5 */ 596 + #define USIR0_IR6 (1 << 6) /* Interrupt request ep 6 */ 597 + #define USIR0_IR7 (1 << 7) /* Interrupt request ep 7 */ 598 599 + #define USIR1_IR8 (1 << 0) /* Interrupt request ep 8 */ 600 + #define USIR1_IR9 (1 << 1) /* Interrupt request ep 9 */ 601 + #define USIR1_IR10 (1 << 2) /* Interrupt request ep 10 */ 602 + #define USIR1_IR11 (1 << 3) /* Interrupt request ep 11 */ 603 + #define USIR1_IR12 (1 << 4) /* Interrupt request ep 12 */ 604 + #define USIR1_IR13 (1 << 5) /* Interrupt request ep 13 */ 605 + #define USIR1_IR14 (1 << 6) /* Interrupt request ep 14 */ 606 + #define USIR1_IR15 (1 << 7) /* Interrupt request ep 15 */ 607 608 #define DCMD_LENGTH 0x01fff /* length mask (max = 8K - 1) */ 609
+17 -17
include/asm-arm/arch-pxa/pxa-regs.h
··· 737 738 #define USIR0 __REG(0x40600058) /* UDC Status Interrupt Register 0 */ 739 740 - #define USIR0_IR0 (1 << 0) /* Interrup request ep 0 */ 741 - #define USIR0_IR1 (1 << 1) /* Interrup request ep 1 */ 742 - #define USIR0_IR2 (1 << 2) /* Interrup request ep 2 */ 743 - #define USIR0_IR3 (1 << 3) /* Interrup request ep 3 */ 744 - #define USIR0_IR4 (1 << 4) /* Interrup request ep 4 */ 745 - #define USIR0_IR5 (1 << 5) /* Interrup request ep 5 */ 746 - #define USIR0_IR6 (1 << 6) /* Interrup request ep 6 */ 747 - #define USIR0_IR7 (1 << 7) /* Interrup request ep 7 */ 748 749 #define USIR1 __REG(0x4060005C) /* UDC Status Interrupt Register 1 */ 750 751 - #define USIR1_IR8 (1 << 0) /* Interrup request ep 8 */ 752 - #define USIR1_IR9 (1 << 1) /* Interrup request ep 9 */ 753 - #define USIR1_IR10 (1 << 2) /* Interrup request ep 10 */ 754 - #define USIR1_IR11 (1 << 3) /* Interrup request ep 11 */ 755 - #define USIR1_IR12 (1 << 4) /* Interrup request ep 12 */ 756 - #define USIR1_IR13 (1 << 5) /* Interrup request ep 13 */ 757 - #define USIR1_IR14 (1 << 6) /* Interrup request ep 14 */ 758 - #define USIR1_IR15 (1 << 7) /* Interrup request ep 15 */ 759 760 #elif defined(CONFIG_PXA27x) 761 ··· 1020 #define ICSR0 __REG(0x40800014) /* ICP Status Register 0 */ 1021 #define ICSR1 __REG(0x40800018) /* ICP Status Register 1 */ 1022 1023 - #define ICCR0_AME (1 << 7) /* Adress match enable */ 1024 #define ICCR0_TIE (1 << 6) /* Transmit FIFO interrupt enable */ 1025 #define ICCR0_RIE (1 << 5) /* Recieve FIFO interrupt enable */ 1026 #define ICCR0_RXE (1 << 4) /* Receive enable */
··· 737 738 #define USIR0 __REG(0x40600058) /* UDC Status Interrupt Register 0 */ 739 740 + #define USIR0_IR0 (1 << 0) /* Interrupt request ep 0 */ 741 + #define USIR0_IR1 (1 << 1) /* Interrupt request ep 1 */ 742 + #define USIR0_IR2 (1 << 2) /* Interrupt request ep 2 */ 743 + #define USIR0_IR3 (1 << 3) /* Interrupt request ep 3 */ 744 + #define USIR0_IR4 (1 << 4) /* Interrupt request ep 4 */ 745 + #define USIR0_IR5 (1 << 5) /* Interrupt request ep 5 */ 746 + #define USIR0_IR6 (1 << 6) /* Interrupt request ep 6 */ 747 + #define USIR0_IR7 (1 << 7) /* Interrupt request ep 7 */ 748 749 #define USIR1 __REG(0x4060005C) /* UDC Status Interrupt Register 1 */ 750 751 + #define USIR1_IR8 (1 << 0) /* Interrupt request ep 8 */ 752 + #define USIR1_IR9 (1 << 1) /* Interrupt request ep 9 */ 753 + #define USIR1_IR10 (1 << 2) /* Interrupt request ep 10 */ 754 + #define USIR1_IR11 (1 << 3) /* Interrupt request ep 11 */ 755 + #define USIR1_IR12 (1 << 4) /* Interrupt request ep 12 */ 756 + #define USIR1_IR13 (1 << 5) /* Interrupt request ep 13 */ 757 + #define USIR1_IR14 (1 << 6) /* Interrupt request ep 14 */ 758 + #define USIR1_IR15 (1 << 7) /* Interrupt request ep 15 */ 759 760 #elif defined(CONFIG_PXA27x) 761 ··· 1020 #define ICSR0 __REG(0x40800014) /* ICP Status Register 0 */ 1021 #define ICSR1 __REG(0x40800018) /* ICP Status Register 1 */ 1022 1023 + #define ICCR0_AME (1 << 7) /* Address match enable */ 1024 #define ICCR0_TIE (1 << 6) /* Transmit FIFO interrupt enable */ 1025 #define ICCR0_RIE (1 << 5) /* Recieve FIFO interrupt enable */ 1026 #define ICCR0_RXE (1 << 4) /* Receive enable */
+2 -2
include/asm-arm/arch-versatile/irqs.h
··· 22 #include <asm/arch/platform.h> 23 24 /* 25 - * IRQ interrupts definitions are the same the INT definitions 26 * held within platform.h 27 */ 28 #define IRQ_VIC_START 0 ··· 94 #define IRQMASK_VICSOURCE31 INTMASK_VICSOURCE31 95 96 /* 97 - * FIQ interrupts definitions are the same the INT definitions. 98 */ 99 #define FIQ_WDOGINT INT_WDOGINT 100 #define FIQ_SOFTINT INT_SOFTINT
··· 22 #include <asm/arch/platform.h> 23 24 /* 25 + * IRQ interrupts definitions are the same as the INT definitions 26 * held within platform.h 27 */ 28 #define IRQ_VIC_START 0 ··· 94 #define IRQMASK_VICSOURCE31 INTMASK_VICSOURCE31 95 96 /* 97 + * FIQ interrupts definitions are the same as the INT definitions. 98 */ 99 #define FIQ_WDOGINT INT_WDOGINT 100 #define FIQ_SOFTINT INT_SOFTINT
+1 -1
include/asm-arm/hardware/it8152.h
··· 42 #define IT8152_GPIO_GPDR __REG_IT8152(0x3f00500) 43 44 /* 45 - Interrup contoler per register summary: 46 --------------------------------------- 47 LCDNIRR: 48 IT8152_LD_IRQ(8) PCICLK stop
··· 42 #define IT8152_GPIO_GPDR __REG_IT8152(0x3f00500) 43 44 /* 45 + Interrupt controller per register summary: 46 --------------------------------------- 47 LCDNIRR: 48 IT8152_LD_IRQ(8) PCICLK stop
+1 -1
include/asm-arm/mach/udc_pxa2xx.h
··· 16 #define PXA2XX_UDC_CMD_DISCONNECT 1 /* so host won't see us */ 17 18 /* Boards following the design guidelines in the developer's manual, 19 - * with on-chip GPIOs not Lubbock's wierd hardware, can have a sane 20 * VBUS IRQ and omit the methods above. Store the GPIO number 21 * here; for GPIO 0, also mask in one of the pxa_gpio_mode() bits. 22 * Note that sometimes the signals go through inverters...
··· 16 #define PXA2XX_UDC_CMD_DISCONNECT 1 /* so host won't see us */ 17 18 /* Boards following the design guidelines in the developer's manual, 19 + * with on-chip GPIOs not Lubbock's weird hardware, can have a sane 20 * VBUS IRQ and omit the methods above. Store the GPIO number 21 * here; for GPIO 0, also mask in one of the pxa_gpio_mode() bits. 22 * Note that sometimes the signals go through inverters...
+1 -1
include/asm-frv/atomic.h
··· 1 /* atomic.h: atomic operation emulation for FR-V 2 * 3 * For an explanation of how atomic ops work in this arch, see: 4 - * Documentation/fujitsu/frv/atomic-ops.txt 5 * 6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. 7 * Written by David Howells (dhowells@redhat.com)
··· 1 /* atomic.h: atomic operation emulation for FR-V 2 * 3 * For an explanation of how atomic ops work in this arch, see: 4 + * Documentation/frv/atomic-ops.txt 5 * 6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. 7 * Written by David Howells (dhowells@redhat.com)
+1 -1
include/asm-frv/bitops.h
··· 1 /* bitops.h: bit operations for the Fujitsu FR-V CPUs 2 * 3 * For an explanation of how atomic ops work in this arch, see: 4 - * Documentation/fujitsu/frv/atomic-ops.txt 5 * 6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. 7 * Written by David Howells (dhowells@redhat.com)
··· 1 /* bitops.h: bit operations for the Fujitsu FR-V CPUs 2 * 3 * For an explanation of how atomic ops work in this arch, see: 4 + * Documentation/frv/atomic-ops.txt 5 * 6 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. 7 * Written by David Howells (dhowells@redhat.com)
+1 -1
include/asm-frv/cacheflush.h
··· 29 #define flush_dcache_mmap_unlock(mapping) do {} while(0) 30 31 /* 32 - * physically-indexed cache managment 33 * - see arch/frv/lib/cache.S 34 */ 35 extern void frv_dcache_writeback(unsigned long start, unsigned long size);
··· 29 #define flush_dcache_mmap_unlock(mapping) do {} while(0) 30 31 /* 32 + * physically-indexed cache management 33 * - see arch/frv/lib/cache.S 34 */ 35 extern void frv_dcache_writeback(unsigned long start, unsigned long size);
+1 -1
include/asm-frv/highmem.h
··· 4 * Written by David Howells (dhowells@redhat.com) 5 * - Derived from include/asm-i386/highmem.h 6 * 7 - * See Documentation/fujitsu/frv/mmu-layout.txt for more information. 8 * 9 * This program is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU General Public License
··· 4 * Written by David Howells (dhowells@redhat.com) 5 * - Derived from include/asm-i386/highmem.h 6 * 7 + * See Documentation/frv/mmu-layout.txt for more information. 8 * 9 * This program is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU General Public License
+1 -1
include/asm-frv/mem-layout.h
··· 39 40 #ifdef CONFIG_MMU 41 42 - /* see Documentation/fujitsu/frv/mmu-layout.txt */ 43 #define KERNEL_LOWMEM_START __UL(0xc0000000) 44 #define KERNEL_LOWMEM_END __UL(0xd0000000) 45 #define VMALLOC_START __UL(0xd0000000)
··· 39 40 #ifdef CONFIG_MMU 41 42 + /* see Documentation/frv/mmu-layout.txt */ 43 #define KERNEL_LOWMEM_START __UL(0xc0000000) 44 #define KERNEL_LOWMEM_END __UL(0xd0000000) 45 #define VMALLOC_START __UL(0xd0000000)
+1 -1
include/asm-frv/pgtable.h
··· 93 94 /* 95 * we use 2-level page tables, folding the PMD (mid-level table) into the PGE (top-level entry) 96 - * [see Documentation/fujitsu/frv/mmu-layout.txt] 97 * 98 * Page Directory: 99 * - Size: 16KB
··· 93 94 /* 95 * we use 2-level page tables, folding the PMD (mid-level table) into the PGE (top-level entry) 96 + * [see Documentation/frv/mmu-layout.txt] 97 * 98 * Page Directory: 99 * - Size: 16KB
+1 -1
include/asm-ia64/compat.h
··· 181 /* 182 * A pointer passed in from user mode. This should not be used for syscall parameters, 183 * just declare them as pointers because the syscall entry code will have appropriately 184 - * comverted them already. 185 */ 186 typedef u32 compat_uptr_t; 187
··· 181 /* 182 * A pointer passed in from user mode. This should not be used for syscall parameters, 183 * just declare them as pointers because the syscall entry code will have appropriately 184 + * converted them already. 185 */ 186 typedef u32 compat_uptr_t; 187
+1 -1
include/asm-m68knommu/bitops.h
··· 262 * tmp = __swab32(*(p++)); 263 * tmp |= ~0UL >> (32-offset); 264 * 265 - * but this would decrease preformance, so we change the 266 * shift: 267 */ 268 tmp = *(p++);
··· 262 * tmp = __swab32(*(p++)); 263 * tmp |= ~0UL >> (32-offset); 264 * 265 + * but this would decrease performance, so we change the 266 * shift: 267 */ 268 tmp = *(p++);
+1 -1
include/asm-m68knommu/commproc.h
··· 715 #define CICR_SCC_SCC3 ((uint)0x00200000) /* SCC3 @ SCCc */ 716 #define CICR_SCB_SCC2 ((uint)0x00040000) /* SCC2 @ SCCb */ 717 #define CICR_SCA_SCC1 ((uint)0x00000000) /* SCC1 @ SCCa */ 718 - #define CICR_IRL_MASK ((uint)0x0000e000) /* Core interrrupt */ 719 #define CICR_HP_MASK ((uint)0x00001f00) /* Hi-pri int. */ 720 #define CICR_IEN ((uint)0x00000080) /* Int. enable */ 721 #define CICR_SPS ((uint)0x00000001) /* SCC Spread */
··· 715 #define CICR_SCC_SCC3 ((uint)0x00200000) /* SCC3 @ SCCc */ 716 #define CICR_SCB_SCC2 ((uint)0x00040000) /* SCC2 @ SCCb */ 717 #define CICR_SCA_SCC1 ((uint)0x00000000) /* SCC1 @ SCCa */ 718 + #define CICR_IRL_MASK ((uint)0x0000e000) /* Core interrupt */ 719 #define CICR_HP_MASK ((uint)0x00001f00) /* Hi-pri int. */ 720 #define CICR_IEN ((uint)0x00000080) /* Int. enable */ 721 #define CICR_SPS ((uint)0x00000001) /* SCC Spread */
+1 -1
include/asm-m68knommu/delay.h
··· 68 /* 69 * Moved the udelay() function into library code, no longer inlined. 70 * I had to change the algorithm because we are overflowing now on 71 - * the faster ColdFire parts. The code is a little biger, so it makes 72 * sense to library it. 73 */ 74 extern void udelay(unsigned long usecs);
··· 68 /* 69 * Moved the udelay() function into library code, no longer inlined. 70 * I had to change the algorithm because we are overflowing now on 71 + * the faster ColdFire parts. The code is a little bigger, so it makes 72 * sense to library it. 73 */ 74 extern void udelay(unsigned long usecs);
+2 -2
include/asm-m68knommu/m5249sim.h
··· 43 #define MCFSIM_CSAR1 0x8c /* CS 1 Address reg (r/w) */ 44 #define MCFSIM_CSMR1 0x90 /* CS 1 Mask reg (r/w) */ 45 #define MCFSIM_CSCR1 0x96 /* CS 1 Control reg (r/w) */ 46 - #define MCFSIM_CSAR2 0x98 /* CS 2 Adress reg (r/w) */ 47 #define MCFSIM_CSMR2 0x9c /* CS 2 Mask reg (r/w) */ 48 #define MCFSIM_CSCR2 0xa2 /* CS 2 Control reg (r/w) */ 49 - #define MCFSIM_CSAR3 0xa4 /* CS 3 Adress reg (r/w) */ 50 #define MCFSIM_CSMR3 0xa8 /* CS 3 Mask reg (r/w) */ 51 #define MCFSIM_CSCR3 0xae /* CS 3 Control reg (r/w) */ 52
··· 43 #define MCFSIM_CSAR1 0x8c /* CS 1 Address reg (r/w) */ 44 #define MCFSIM_CSMR1 0x90 /* CS 1 Mask reg (r/w) */ 45 #define MCFSIM_CSCR1 0x96 /* CS 1 Control reg (r/w) */ 46 + #define MCFSIM_CSAR2 0x98 /* CS 2 Address reg (r/w) */ 47 #define MCFSIM_CSMR2 0x9c /* CS 2 Mask reg (r/w) */ 48 #define MCFSIM_CSCR2 0xa2 /* CS 2 Control reg (r/w) */ 49 + #define MCFSIM_CSAR3 0xa4 /* CS 3 Address reg (r/w) */ 50 #define MCFSIM_CSMR3 0xa8 /* CS 3 Mask reg (r/w) */ 51 #define MCFSIM_CSCR3 0xae /* CS 3 Control reg (r/w) */ 52
+6 -6
include/asm-m68knommu/m5307sim.h
··· 64 #define MCFSIM_CSMR7 0xda /* CS 7 Mask reg (r/w) */ 65 #define MCFSIM_CSCR7 0xde /* CS 7 Control reg (r/w) */ 66 #else 67 - #define MCFSIM_CSAR2 0x98 /* CS 2 Adress reg (r/w) */ 68 #define MCFSIM_CSMR2 0x9c /* CS 2 Mask reg (r/w) */ 69 #define MCFSIM_CSCR2 0xa2 /* CS 2 Control reg (r/w) */ 70 - #define MCFSIM_CSAR3 0xa4 /* CS 3 Adress reg (r/w) */ 71 #define MCFSIM_CSMR3 0xa8 /* CS 3 Mask reg (r/w) */ 72 #define MCFSIM_CSCR3 0xae /* CS 3 Control reg (r/w) */ 73 - #define MCFSIM_CSAR4 0xb0 /* CS 4 Adress reg (r/w) */ 74 #define MCFSIM_CSMR4 0xb4 /* CS 4 Mask reg (r/w) */ 75 #define MCFSIM_CSCR4 0xba /* CS 4 Control reg (r/w) */ 76 - #define MCFSIM_CSAR5 0xbc /* CS 5 Adress reg (r/w) */ 77 #define MCFSIM_CSMR5 0xc0 /* CS 5 Mask reg (r/w) */ 78 #define MCFSIM_CSCR5 0xc6 /* CS 5 Control reg (r/w) */ 79 - #define MCFSIM_CSAR6 0xc8 /* CS 6 Adress reg (r/w) */ 80 #define MCFSIM_CSMR6 0xcc /* CS 6 Mask reg (r/w) */ 81 #define MCFSIM_CSCR6 0xd2 /* CS 6 Control reg (r/w) */ 82 - #define MCFSIM_CSAR7 0xd4 /* CS 7 Adress reg (r/w) */ 83 #define MCFSIM_CSMR7 0xd8 /* CS 7 Mask reg (r/w) */ 84 #define MCFSIM_CSCR7 0xde /* CS 7 Control reg (r/w) */ 85 #endif /* CONFIG_OLDMASK */
··· 64 #define MCFSIM_CSMR7 0xda /* CS 7 Mask reg (r/w) */ 65 #define MCFSIM_CSCR7 0xde /* CS 7 Control reg (r/w) */ 66 #else 67 + #define MCFSIM_CSAR2 0x98 /* CS 2 Address reg (r/w) */ 68 #define MCFSIM_CSMR2 0x9c /* CS 2 Mask reg (r/w) */ 69 #define MCFSIM_CSCR2 0xa2 /* CS 2 Control reg (r/w) */ 70 + #define MCFSIM_CSAR3 0xa4 /* CS 3 Address reg (r/w) */ 71 #define MCFSIM_CSMR3 0xa8 /* CS 3 Mask reg (r/w) */ 72 #define MCFSIM_CSCR3 0xae /* CS 3 Control reg (r/w) */ 73 + #define MCFSIM_CSAR4 0xb0 /* CS 4 Address reg (r/w) */ 74 #define MCFSIM_CSMR4 0xb4 /* CS 4 Mask reg (r/w) */ 75 #define MCFSIM_CSCR4 0xba /* CS 4 Control reg (r/w) */ 76 + #define MCFSIM_CSAR5 0xbc /* CS 5 Address reg (r/w) */ 77 #define MCFSIM_CSMR5 0xc0 /* CS 5 Mask reg (r/w) */ 78 #define MCFSIM_CSCR5 0xc6 /* CS 5 Control reg (r/w) */ 79 + #define MCFSIM_CSAR6 0xc8 /* CS 6 Address reg (r/w) */ 80 #define MCFSIM_CSMR6 0xcc /* CS 6 Mask reg (r/w) */ 81 #define MCFSIM_CSCR6 0xd2 /* CS 6 Control reg (r/w) */ 82 + #define MCFSIM_CSAR7 0xd4 /* CS 7 Address reg (r/w) */ 83 #define MCFSIM_CSMR7 0xd8 /* CS 7 Mask reg (r/w) */ 84 #define MCFSIM_CSCR7 0xde /* CS 7 Control reg (r/w) */ 85 #endif /* CONFIG_OLDMASK */
+6 -6
include/asm-m68knommu/m5407sim.h
··· 48 #define MCFSIM_CSMR1 0x90 /* CS 1 Mask reg (r/w) */ 49 #define MCFSIM_CSCR1 0x96 /* CS 1 Control reg (r/w) */ 50 51 - #define MCFSIM_CSAR2 0x98 /* CS 2 Adress reg (r/w) */ 52 #define MCFSIM_CSMR2 0x9c /* CS 2 Mask reg (r/w) */ 53 #define MCFSIM_CSCR2 0xa2 /* CS 2 Control reg (r/w) */ 54 - #define MCFSIM_CSAR3 0xa4 /* CS 3 Adress reg (r/w) */ 55 #define MCFSIM_CSMR3 0xa8 /* CS 3 Mask reg (r/w) */ 56 #define MCFSIM_CSCR3 0xae /* CS 3 Control reg (r/w) */ 57 - #define MCFSIM_CSAR4 0xb0 /* CS 4 Adress reg (r/w) */ 58 #define MCFSIM_CSMR4 0xb4 /* CS 4 Mask reg (r/w) */ 59 #define MCFSIM_CSCR4 0xba /* CS 4 Control reg (r/w) */ 60 - #define MCFSIM_CSAR5 0xbc /* CS 5 Adress reg (r/w) */ 61 #define MCFSIM_CSMR5 0xc0 /* CS 5 Mask reg (r/w) */ 62 #define MCFSIM_CSCR5 0xc6 /* CS 5 Control reg (r/w) */ 63 - #define MCFSIM_CSAR6 0xc8 /* CS 6 Adress reg (r/w) */ 64 #define MCFSIM_CSMR6 0xcc /* CS 6 Mask reg (r/w) */ 65 #define MCFSIM_CSCR6 0xd2 /* CS 6 Control reg (r/w) */ 66 - #define MCFSIM_CSAR7 0xd4 /* CS 7 Adress reg (r/w) */ 67 #define MCFSIM_CSMR7 0xd8 /* CS 7 Mask reg (r/w) */ 68 #define MCFSIM_CSCR7 0xde /* CS 7 Control reg (r/w) */ 69
··· 48 #define MCFSIM_CSMR1 0x90 /* CS 1 Mask reg (r/w) */ 49 #define MCFSIM_CSCR1 0x96 /* CS 1 Control reg (r/w) */ 50 51 + #define MCFSIM_CSAR2 0x98 /* CS 2 Address reg (r/w) */ 52 #define MCFSIM_CSMR2 0x9c /* CS 2 Mask reg (r/w) */ 53 #define MCFSIM_CSCR2 0xa2 /* CS 2 Control reg (r/w) */ 54 + #define MCFSIM_CSAR3 0xa4 /* CS 3 Address reg (r/w) */ 55 #define MCFSIM_CSMR3 0xa8 /* CS 3 Mask reg (r/w) */ 56 #define MCFSIM_CSCR3 0xae /* CS 3 Control reg (r/w) */ 57 + #define MCFSIM_CSAR4 0xb0 /* CS 4 Address reg (r/w) */ 58 #define MCFSIM_CSMR4 0xb4 /* CS 4 Mask reg (r/w) */ 59 #define MCFSIM_CSCR4 0xba /* CS 4 Control reg (r/w) */ 60 + #define MCFSIM_CSAR5 0xbc /* CS 5 Address reg (r/w) */ 61 #define MCFSIM_CSMR5 0xc0 /* CS 5 Mask reg (r/w) */ 62 #define MCFSIM_CSCR5 0xc6 /* CS 5 Control reg (r/w) */ 63 + #define MCFSIM_CSAR6 0xc8 /* CS 6 Address reg (r/w) */ 64 #define MCFSIM_CSMR6 0xcc /* CS 6 Mask reg (r/w) */ 65 #define MCFSIM_CSCR6 0xd2 /* CS 6 Control reg (r/w) */ 66 + #define MCFSIM_CSAR7 0xd4 /* CS 7 Address reg (r/w) */ 67 #define MCFSIM_CSMR7 0xd8 /* CS 7 Mask reg (r/w) */ 68 #define MCFSIM_CSCR7 0xde /* CS 7 Control reg (r/w) */ 69
+1 -1
include/asm-m68knommu/m68360_regs.h
··· 138 #define CICR_SCC_SCC3 ((uint)0x00200000) /* SCC3 @ SCCc */ 139 #define CICR_SCD_SCC4 ((uint)0x00c00000) /* SCC4 @ SCCd */ 140 141 - #define CICR_IRL_MASK ((uint)0x0000e000) /* Core interrrupt */ 142 #define CICR_HP_MASK ((uint)0x00001f00) /* Hi-pri int. */ 143 #define CICR_VBA_MASK ((uint)0x000000e0) /* Vector Base Address */ 144 #define CICR_SPS ((uint)0x00000001) /* SCC Spread */
··· 138 #define CICR_SCC_SCC3 ((uint)0x00200000) /* SCC3 @ SCCc */ 139 #define CICR_SCD_SCC4 ((uint)0x00c00000) /* SCC4 @ SCCd */ 140 141 + #define CICR_IRL_MASK ((uint)0x0000e000) /* Core interrupt */ 142 #define CICR_HP_MASK ((uint)0x00001f00) /* Hi-pri int. */ 143 #define CICR_VBA_MASK ((uint)0x000000e0) /* Vector Base Address */ 144 #define CICR_SPS ((uint)0x00000001) /* SCC Spread */
+1 -1
include/asm-m68knommu/mcfuart.h
··· 71 #define MCFUART_UTB 0x0c /* Transmit Buffer (w) */ 72 #define MCFUART_UIPCR 0x10 /* Input Port Change (r) */ 73 #define MCFUART_UACR 0x10 /* Auxiliary Control (w) */ 74 - #define MCFUART_UISR 0x14 /* Interrup Status (r) */ 75 #define MCFUART_UIMR 0x14 /* Interrupt Mask (w) */ 76 #define MCFUART_UBG1 0x18 /* Baud Rate MSB (r/w) */ 77 #define MCFUART_UBG2 0x1c /* Baud Rate LSB (r/w) */
··· 71 #define MCFUART_UTB 0x0c /* Transmit Buffer (w) */ 72 #define MCFUART_UIPCR 0x10 /* Input Port Change (r) */ 73 #define MCFUART_UACR 0x10 /* Auxiliary Control (w) */ 74 + #define MCFUART_UISR 0x14 /* Interrupt Status (r) */ 75 #define MCFUART_UIMR 0x14 /* Interrupt Mask (w) */ 76 #define MCFUART_UBG1 0x18 /* Baud Rate MSB (r/w) */ 77 #define MCFUART_UBG2 0x1c /* Baud Rate LSB (r/w) */
+1 -1
include/asm-mips/compat.h
··· 128 * A pointer passed in from user mode. This should not 129 * be used for syscall parameters, just declare them 130 * as pointers because the syscall entry code will have 131 - * appropriately comverted them already. 132 */ 133 typedef u32 compat_uptr_t; 134
··· 128 * A pointer passed in from user mode. This should not 129 * be used for syscall parameters, just declare them 130 * as pointers because the syscall entry code will have 131 + * appropriately converted them already. 132 */ 133 typedef u32 compat_uptr_t; 134
+1 -1
include/asm-mips/mach-excite/excite_fpga.h
··· 3 4 5 /** 6 - * Adress alignment of the individual FPGA bytes. 7 * The address arrangement of the individual bytes of the FPGA is two 8 * byte aligned at the embedded MK2 platform. 9 */
··· 3 4 5 /** 6 + * Address alignment of the individual FPGA bytes. 7 * The address arrangement of the individual bytes of the FPGA is two 8 * byte aligned at the embedded MK2 platform. 9 */
+1 -1
include/asm-mips/mach-wrppmc/mach-gt64120.h
··· 45 #define GT_PCI_IO_SIZE 0x02000000UL 46 47 /* 48 - * PCI interrupts will come in on either the INTA or INTD interrups lines, 49 * which are mapped to the #2 and #5 interrupt pins of the MIPS. On our 50 * boards, they all either come in on IntD or they all come in on IntA, they 51 * aren't mixed. There can be numerous PCI interrupts, so we keep a list of the
··· 45 #define GT_PCI_IO_SIZE 0x02000000UL 46 47 /* 48 + * PCI interrupts will come in on either the INTA or INTD interrupt lines, 49 * which are mapped to the #2 and #5 interrupt pins of the MIPS. On our 50 * boards, they all either come in on IntD or they all come in on IntA, they 51 * aren't mixed. There can be numerous PCI interrupts, so we keep a list of the
+1 -1
include/asm-mips/sgi/ip22.h
··· 15 /* 16 * These are the virtual IRQ numbers, we divide all IRQ's into 17 * 'spaces', the 'space' determines where and how to enable/disable 18 - * that particular IRQ on an SGI machine. HPC DMA and MC DMA interrups 19 * are not supported this way. Driver is supposed to allocate HPC/MC 20 * interrupt as shareable and then look to proper status bit (see 21 * HAL2 driver). This will prevent many complications, trust me ;-)
··· 15 /* 16 * These are the virtual IRQ numbers, we divide all IRQ's into 17 * 'spaces', the 'space' determines where and how to enable/disable 18 + * that particular IRQ on an SGI machine. HPC DMA and MC DMA interrupts 19 * are not supported this way. Driver is supposed to allocate HPC/MC 20 * interrupt as shareable and then look to proper status bit (see 21 * HAL2 driver). This will prevent many complications, trust me ;-)
+1 -1
include/asm-mips/sn/sn0/hubio.h
··· 338 #define IIO_IFDR 0x400398 /* IOQ FIFO Depth */ 339 #define IIO_IIAP 0x4003a0 /* IIQ Arbitration Parameters */ 340 #define IIO_IMMR IIO_IIAP 341 - #define IIO_ICMR 0x4003a8 /* CRB Managment Register */ 342 #define IIO_ICCR 0x4003b0 /* CRB Control Register */ 343 #define IIO_ICTO 0x4003b8 /* CRB Time Out Register */ 344 #define IIO_ICTP 0x4003c0 /* CRB Time Out Prescalar */
··· 338 #define IIO_IFDR 0x400398 /* IOQ FIFO Depth */ 339 #define IIO_IIAP 0x4003a0 /* IIQ Arbitration Parameters */ 340 #define IIO_IMMR IIO_IIAP 341 + #define IIO_ICMR 0x4003a8 /* CRB Management Register */ 342 #define IIO_ICCR 0x4003b0 /* CRB Control Register */ 343 #define IIO_ICTO 0x4003b8 /* CRB Time Out Register */ 344 #define IIO_ICTP 0x4003c0 /* CRB Time Out Prescalar */
+1 -1
include/asm-parisc/compat.h
··· 132 * A pointer passed in from user mode. This should not 133 * be used for syscall parameters, just declare them 134 * as pointers because the syscall entry code will have 135 - * appropriately comverted them already. 136 */ 137 typedef u32 compat_uptr_t; 138
··· 132 * A pointer passed in from user mode. This should not 133 * be used for syscall parameters, just declare them 134 * as pointers because the syscall entry code will have 135 + * appropriately converted them already. 136 */ 137 typedef u32 compat_uptr_t; 138
+1 -1
include/asm-parisc/elf.h
··· 28 #define EFA_PARISC_1_1 0x0210 /* PA-RISC 1.1 big-endian. */ 29 #define EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */ 30 31 - /* Additional section indeces. */ 32 33 #define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for tenatively declared 34 symbols in ANSI C. */
··· 28 #define EFA_PARISC_1_1 0x0210 /* PA-RISC 1.1 big-endian. */ 29 #define EFA_PARISC_2_0 0x0214 /* PA-RISC 2.0 big-endian. */ 30 31 + /* Additional section indices. */ 32 33 #define SHN_PARISC_ANSI_COMMON 0xff00 /* Section for tenatively declared 34 symbols in ANSI C. */
+1 -1
include/asm-parisc/linkage.h
··· 8 9 /* 10 * In parisc assembly a semicolon marks a comment while a 11 - * exclamation mark is used to seperate independent lines. 12 */ 13 #ifdef __ASSEMBLY__ 14
··· 8 9 /* 10 * In parisc assembly a semicolon marks a comment while a 11 + * exclamation mark is used to separate independent lines. 12 */ 13 #ifdef __ASSEMBLY__ 14
+1 -1
include/asm-parisc/vga.h
··· 3 4 /* nothing */ 5 6 - #endif __ASM_PARISC_VGA_H__
··· 3 4 /* nothing */ 5 6 + #endif /* __ASM_PARISC_VGA_H__ */
+1 -1
include/asm-powerpc/compat.h
··· 119 * A pointer passed in from user mode. This should not 120 * be used for syscall parameters, just declare them 121 * as pointers because the syscall entry code will have 122 - * appropriately comverted them already. 123 */ 124 typedef u32 compat_uptr_t; 125
··· 119 * A pointer passed in from user mode. This should not 120 * be used for syscall parameters, just declare them 121 * as pointers because the syscall entry code will have 122 + * appropriately converted them already. 123 */ 124 typedef u32 compat_uptr_t; 125
+1 -1
include/asm-s390/compat.h
··· 149 * A pointer passed in from user mode. This should not 150 * be used for syscall parameters, just declare them 151 * as pointers because the syscall entry code will have 152 - * appropriately comverted them already. 153 */ 154 typedef u32 compat_uptr_t; 155
··· 149 * A pointer passed in from user mode. This should not 150 * be used for syscall parameters, just declare them 151 * as pointers because the syscall entry code will have 152 + * appropriately converted them already. 153 */ 154 typedef u32 compat_uptr_t; 155
+1 -1
include/asm-sparc64/compat.h
··· 152 * A pointer passed in from user mode. This should not 153 * be used for syscall parameters, just declare them 154 * as pointers because the syscall entry code will have 155 - * appropriately comverted them already. 156 */ 157 typedef u32 compat_uptr_t; 158
··· 152 * A pointer passed in from user mode. This should not 153 * be used for syscall parameters, just declare them 154 * as pointers because the syscall entry code will have 155 + * appropriately converted them already. 156 */ 157 typedef u32 compat_uptr_t; 158
+1 -1
include/asm-x86/compat.h
··· 190 * A pointer passed in from user mode. This should not 191 * be used for syscall parameters, just declare them 192 * as pointers because the syscall entry code will have 193 - * appropriately comverted them already. 194 */ 195 typedef u32 compat_uptr_t; 196
··· 190 * A pointer passed in from user mode. This should not 191 * be used for syscall parameters, just declare them 192 * as pointers because the syscall entry code will have 193 + * appropriately converted them already. 194 */ 195 typedef u32 compat_uptr_t; 196
-1
include/asm-x86/mach-voyager/do_timer.h
··· 6 7 /** 8 * do_timer_interrupt_hook - hook into timer tick 9 - * @regs: standard registers from interrupt 10 * 11 * Call the pit clock event handler. see asm/i8253.h 12 **/
··· 6 7 /** 8 * do_timer_interrupt_hook - hook into timer tick 9 * 10 * Call the pit clock event handler. see asm/i8253.h 11 **/
+1 -1
include/linux/chio.h
··· 108 109 /* 110 * CHIOGELEM 111 - * get more detailed status informtion for a single element 112 */ 113 struct changer_get_element { 114 int cge_type; /* type/unit */
··· 108 109 /* 110 * CHIOGELEM 111 + * get more detailed status information for a single element 112 */ 113 struct changer_get_element { 114 int cge_type; /* type/unit */
+1 -1
include/linux/cyclades.h
··· 177 __u32 fpga_version; /* FPGA Version Number Register */ 178 __u32 cpu_start; /* CPU start Register (write) */ 179 __u32 cpu_stop; /* CPU stop Register (write) */ 180 - __u32 misc_reg; /* Miscelaneous Register */ 181 __u32 idt_mode; /* IDT mode Register */ 182 __u32 uart_irq_status; /* UART IRQ status Register */ 183 __u32 clear_timer0_irq; /* Clear timer interrupt Register */
··· 177 __u32 fpga_version; /* FPGA Version Number Register */ 178 __u32 cpu_start; /* CPU start Register (write) */ 179 __u32 cpu_stop; /* CPU stop Register (write) */ 180 + __u32 misc_reg; /* Miscellaneous Register */ 181 __u32 idt_mode; /* IDT mode Register */ 182 __u32 uart_irq_status; /* UART IRQ status Register */ 183 __u32 clear_timer0_irq; /* Clear timer interrupt Register */
+1 -1
include/linux/cycx_x25.h
··· 81 * @n2win - level 2 window (values: 1 thru 7) 82 * @n3win - level 3 window (values: 1 thru 7) 83 * @nvc - # of logical channels (values: 1 thru 64) 84 - * @pktlen - level 3 packet lenght - log base 2 of size 85 * @locaddr - my address 86 * @remaddr - remote address 87 * @t1 - time, in seconds
··· 81 * @n2win - level 2 window (values: 1 thru 7) 82 * @n3win - level 3 window (values: 1 thru 7) 83 * @nvc - # of logical channels (values: 1 thru 64) 84 + * @pktlen - level 3 packet length - log base 2 of size 85 * @locaddr - my address 86 * @remaddr - remote address 87 * @t1 - time, in seconds
+2 -2
include/linux/dma-mapping.h
··· 1 - #ifndef _ASM_LINUX_DMA_MAPPING_H 2 - #define _ASM_LINUX_DMA_MAPPING_H 3 4 #include <linux/device.h> 5 #include <linux/err.h>
··· 1 + #ifndef _LINUX_DMA_MAPPING_H 2 + #define _LINUX_DMA_MAPPING_H 3 4 #include <linux/device.h> 5 #include <linux/err.h>
+1 -1
include/linux/dmaengine.h
··· 29 #include <linux/dma-mapping.h> 30 31 /** 32 - * enum dma_state - resource PNP/power managment state 33 * @DMA_RESOURCE_SUSPEND: DMA device going into low power state 34 * @DMA_RESOURCE_RESUME: DMA device returning to full power 35 * @DMA_RESOURCE_AVAILABLE: DMA device available to the system
··· 29 #include <linux/dma-mapping.h> 30 31 /** 32 + * enum dma_state - resource PNP/power management state 33 * @DMA_RESOURCE_SUSPEND: DMA device going into low power state 34 * @DMA_RESOURCE_RESUME: DMA device returning to full power 35 * @DMA_RESOURCE_AVAILABLE: DMA device available to the system
+1 -1
include/linux/ethtool.h
··· 309 * get_ringparam: Report ring sizes 310 * set_ringparam: Set ring sizes 311 * get_pauseparam: Report pause parameters 312 - * set_pauseparam: Set pause paramters 313 * get_rx_csum: Report whether receive checksums are turned on or off 314 * set_rx_csum: Turn receive checksum on or off 315 * get_tx_csum: Report whether transmit checksums are turned on or off
··· 309 * get_ringparam: Report ring sizes 310 * set_ringparam: Set ring sizes 311 * get_pauseparam: Report pause parameters 312 + * set_pauseparam: Set pause parameters 313 * get_rx_csum: Report whether receive checksums are turned on or off 314 * set_rx_csum: Turn receive checksum on or off 315 * get_tx_csum: Report whether transmit checksums are turned on or off
+1 -1
include/linux/fs.h
··· 1308 * being set. find_inode() uses this to prevent returning 1309 * nearly-dead inodes. 1310 * I_SYNC Similar to I_LOCK, but limited in scope to writeback 1311 - * of inode dirty data. Having a seperate lock for this 1312 * purpose reduces latency and prevents some filesystem- 1313 * specific deadlocks. 1314 *
··· 1308 * being set. find_inode() uses this to prevent returning 1309 * nearly-dead inodes. 1310 * I_SYNC Similar to I_LOCK, but limited in scope to writeback 1311 + * of inode dirty data. Having a separate lock for this 1312 * purpose reduces latency and prevents some filesystem- 1313 * specific deadlocks. 1314 *
+1 -1
include/linux/hdreg.h
··· 364 #define SETFEATURES_EN_RLA 0xAA /* Enable read look-ahead feature */ 365 #define SETFEATURES_PREFETCH 0xAB /* Sets drive prefetch value */ 366 #define SETFEATURES_EN_REST 0xAC /* ATA-1 */ 367 - #define SETFEATURES_4B_RW_LONG 0xBB /* Set Lenght of 4 bytes */ 368 #define SETFEATURES_DIS_AAM 0xC2 /* Disable Automatic Acoustic Management */ 369 #define SETFEATURES_EN_RPOD 0xCC /* Enable reverting to power on defaults */ 370 #define SETFEATURES_DIS_RI 0xDD /* Disable release interrupt ATAPI */
··· 364 #define SETFEATURES_EN_RLA 0xAA /* Enable read look-ahead feature */ 365 #define SETFEATURES_PREFETCH 0xAB /* Sets drive prefetch value */ 366 #define SETFEATURES_EN_REST 0xAC /* ATA-1 */ 367 + #define SETFEATURES_4B_RW_LONG 0xBB /* Set Length of 4 bytes */ 368 #define SETFEATURES_DIS_AAM 0xC2 /* Disable Automatic Acoustic Management */ 369 #define SETFEATURES_EN_RPOD 0xCC /* Enable reverting to power on defaults */ 370 #define SETFEATURES_DIS_RI 0xDD /* Disable release interrupt ATAPI */
-1
include/linux/hrtimer.h
··· 147 * @get_time: function to retrieve the current time of the clock 148 * @get_softirq_time: function to retrieve the current time from the softirq 149 * @softirq_time: the time when running the hrtimer queue in the softirq 150 - * @cb_pending: list of timers where the callback is pending 151 * @offset: offset of this clock to the monotonic base 152 * @reprogram: function to reprogram the timer event 153 */
··· 147 * @get_time: function to retrieve the current time of the clock 148 * @get_softirq_time: function to retrieve the current time from the softirq 149 * @softirq_time: the time when running the hrtimer queue in the softirq 150 * @offset: offset of this clock to the monotonic base 151 * @reprogram: function to reprogram the timer event 152 */
+2 -2
include/linux/llc.h
··· 49 50 /* LLC SAP types. */ 51 #define LLC_SAP_NULL 0x00 /* NULL SAP. */ 52 - #define LLC_SAP_LLC 0x02 /* LLC Sublayer Managment. */ 53 #define LLC_SAP_SNA 0x04 /* SNA Path Control. */ 54 - #define LLC_SAP_PNM 0x0E /* Proway Network Managment. */ 55 #define LLC_SAP_IP 0x06 /* TCP/IP. */ 56 #define LLC_SAP_BSPAN 0x42 /* Bridge Spanning Tree Proto */ 57 #define LLC_SAP_MMS 0x4E /* Manufacturing Message Srv. */
··· 49 50 /* LLC SAP types. */ 51 #define LLC_SAP_NULL 0x00 /* NULL SAP. */ 52 + #define LLC_SAP_LLC 0x02 /* LLC Sublayer Management. */ 53 #define LLC_SAP_SNA 0x04 /* SNA Path Control. */ 54 + #define LLC_SAP_PNM 0x0E /* Proway Network Management. */ 55 #define LLC_SAP_IP 0x06 /* TCP/IP. */ 56 #define LLC_SAP_BSPAN 0x42 /* Bridge Spanning Tree Proto */ 57 #define LLC_SAP_MMS 0x4E /* Manufacturing Message Srv. */
+1 -1
include/linux/pm.h
··· 95 }; 96 97 /* Functions above this comment are list-based old-style power 98 - * managment. Please avoid using them. */ 99 100 /* 101 * Callbacks for platform drivers to implement.
··· 95 }; 96 97 /* Functions above this comment are list-based old-style power 98 + * management. Please avoid using them. */ 99 100 /* 101 * Callbacks for platform drivers to implement.
+1 -1
include/linux/pnp.h
··· 126 }; 127 128 /* 129 - * Device Managemnt 130 */ 131 132 struct pnp_card {
··· 126 }; 127 128 /* 129 + * Device Management 130 */ 131 132 struct pnp_card {
+1 -1
include/linux/radix-tree.h
··· 91 * 92 * For API usage, in general, 93 * - any function _modifying_ the tree or tags (inserting or deleting 94 - * items, setting or clearing tags must exclude other modifications, and 95 * exclude any functions reading the tree. 96 * - any function _reading_ the tree or tags (looking up items or tags, 97 * gang lookups) must exclude modifications to the tree, but may occur
··· 91 * 92 * For API usage, in general, 93 * - any function _modifying_ the tree or tags (inserting or deleting 94 + * items, setting or clearing tags) must exclude other modifications, and 95 * exclude any functions reading the tree. 96 * - any function _reading_ the tree or tags (looking up items or tags, 97 * gang lookups) must exclude modifications to the tree, but may occur
+1 -1
include/linux/reiserfs_fs_sb.h
··· 185 unsigned long j_trans_id; 186 unsigned long j_mount_id; 187 unsigned long j_start; /* start of current waiting commit (index into j_ap_blocks) */ 188 - unsigned long j_len; /* lenght of current waiting commit */ 189 unsigned long j_len_alloc; /* number of buffers requested by journal_begin() */ 190 atomic_t j_wcount; /* count of writers for current commit */ 191 unsigned long j_bcount; /* batch count. allows turning X transactions into 1 */
··· 185 unsigned long j_trans_id; 186 unsigned long j_mount_id; 187 unsigned long j_start; /* start of current waiting commit (index into j_ap_blocks) */ 188 + unsigned long j_len; /* length of current waiting commit */ 189 unsigned long j_len_alloc; /* number of buffers requested by journal_begin() */ 190 atomic_t j_wcount; /* count of writers for current commit */ 191 unsigned long j_bcount; /* batch count. allows turning X transactions into 1 */
+1 -1
include/linux/signalfd.h
··· 29 30 /* 31 * Pad strcture to 128 bytes. Remember to update the 32 - * pad size when you add new memebers. We use a fixed 33 * size structure to avoid compatibility problems with 34 * future versions, and we leave extra space for additional 35 * members. We use fixed size members because this strcture
··· 29 30 /* 31 * Pad strcture to 128 bytes. Remember to update the 32 + * pad size when you add new members. We use a fixed 33 * size structure to avoid compatibility problems with 34 * future versions, and we leave extra space for additional 35 * members. We use fixed size members because this strcture
+1 -1
include/linux/sm501-regs.h
··· 171 /* USB slave/gadget data port base */ 172 #define SM501_USB_GADGET_DATA (0x070000) 173 174 - /* Display contoller/video engine base */ 175 #define SM501_DC (0x080000) 176 177 /* common defines for the SM501 address registers */
··· 171 /* USB slave/gadget data port base */ 172 #define SM501_USB_GADGET_DATA (0x070000) 173 174 + /* Display controller/video engine base */ 175 #define SM501_DC (0x080000) 176 177 /* common defines for the SM501 address registers */
+1 -1
include/linux/spinlock_api_up.h
··· 21 /* 22 * In the UP-nondebug case there's no real locking going on, so the 23 * only thing we have to do is to keep the preempt counts and irq 24 - * flags straight, to supress compiler warnings of unused lock 25 * variables, and to add the proper checker annotations: 26 */ 27 #define __LOCK(lock) \
··· 21 /* 22 * In the UP-nondebug case there's no real locking going on, so the 23 * only thing we have to do is to keep the preempt counts and irq 24 + * flags straight, to suppress compiler warnings of unused lock 25 * variables, and to add the proper checker annotations: 26 */ 27 #define __LOCK(lock) \
+1 -1
include/linux/wireless.h
··· 1079 */ 1080 struct iw_event 1081 { 1082 - __u16 len; /* Real lenght of this stuff */ 1083 __u16 cmd; /* Wireless IOCTL */ 1084 union iwreq_data u; /* IOCTL fixed payload */ 1085 };
··· 1079 */ 1080 struct iw_event 1081 { 1082 + __u16 len; /* Real length of this stuff */ 1083 __u16 cmd; /* Wireless IOCTL */ 1084 union iwreq_data u; /* IOCTL fixed payload */ 1085 };
+1 -1
include/media/rds.h
··· 4 saa6588.c and every driver (e.g. bttv-driver.c) that wants 5 to use the saa6588 module. 6 7 - Instead of having a seperate rds.h, I'd prefer to include 8 this stuff in one of the already existing files like tuner.h 9 10 (c) 2005 by Hans J. Koch
··· 4 saa6588.c and every driver (e.g. bttv-driver.c) that wants 5 to use the saa6588 module. 6 7 + Instead of having a separate rds.h, I'd prefer to include 8 this stuff in one of the already existing files like tuner.h 9 10 (c) 2005 by Hans J. Koch
+1 -1
include/scsi/scsi_transport_fc.h
··· 176 * ports has a unique presense on the SAN, and may be instantiated via 177 * NPIV, Virtual Fabrics, or via additional ALPAs. As the vport is a 178 * unique presense, each vport has it's own view of the fabric, 179 - * authentication priviledge, and priorities. 180 * 181 * A virtual port may support 1 or more FC4 roles. Typically it is a 182 * FCP Initiator. It could be a FCP Target, or exist sole for an IP over FC
··· 176 * ports has a unique presense on the SAN, and may be instantiated via 177 * NPIV, Virtual Fabrics, or via additional ALPAs. As the vport is a 178 * unique presense, each vport has it's own view of the fabric, 179 + * authentication privilege, and priorities. 180 * 181 * A virtual port may support 1 or more FC4 roles. Typically it is a 182 * FCP Initiator. It could be a FCP Target, or exist sole for an IP over FC
-2
kernel/exit.c
··· 50 #include <asm/pgtable.h> 51 #include <asm/mmu_context.h> 52 53 - extern void sem_exit (void); 54 - 55 static void exit_mm(struct task_struct * tsk); 56 57 static void __unhash_process(struct task_struct *p)
··· 50 #include <asm/pgtable.h> 51 #include <asm/mmu_context.h> 52 53 static void exit_mm(struct task_struct * tsk); 54 55 static void __unhash_process(struct task_struct *p)
+1 -1
kernel/posix-timers.c
··· 493 goto retry; 494 else if (error) { 495 /* 496 - * Wierd looking, but we return EAGAIN if the IDR is 497 * full (proper POSIX return value for this) 498 */ 499 error = -EAGAIN;
··· 493 goto retry; 494 else if (error) { 495 /* 496 + * Weird looking, but we return EAGAIN if the IDR is 497 * full (proper POSIX return value for this) 498 */ 499 error = -EAGAIN;
+1 -1
lib/crc32.c
··· 348 * but again the multiple of the polynomial to subtract depends only on 349 * the high bits, the high 8 bits in this case. 350 * 351 - * The multile we need in that case is the low 32 bits of a 40-bit 352 * value whose high 8 bits are given, and which is a multiple of the 353 * generator polynomial. This is simply the CRC-32 of the given 354 * one-byte message.
··· 348 * but again the multiple of the polynomial to subtract depends only on 349 * the high bits, the high 8 bits in this case. 350 * 351 + * The multiple we need in that case is the low 32 bits of a 40-bit 352 * value whose high 8 bits are given, and which is a multiple of the 353 * generator polynomial. This is simply the CRC-32 of the given 354 * one-byte message.
+1 -1
lib/zlib_deflate/defutil.h
··· 164 int nice_match; /* Stop searching when current match exceeds this */ 165 166 /* used by trees.c: */ 167 - /* Didn't use ct_data typedef below to supress compiler warning */ 168 struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ 169 struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ 170 struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
··· 164 int nice_match; /* Stop searching when current match exceeds this */ 165 166 /* used by trees.c: */ 167 + /* Didn't use ct_data typedef below to suppress compiler warning */ 168 struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */ 169 struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */ 170 struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */
+1 -1
mm/truncate.c
··· 21 22 23 /** 24 - * do_invalidatepage - invalidate part of all of a page 25 * @page: the page which is affected 26 * @offset: the index of the truncation point 27 *
··· 21 22 23 /** 24 + * do_invalidatepage - invalidate part or all of a page 25 * @page: the page which is affected 26 * @offset: the index of the truncation point 27 *
+2 -2
net/core/net_namespace.c
··· 287 * @ops: pernet operations structure to manipulate 288 * 289 * Remove the pernet operations structure from the list to be 290 - * used when network namespaces are created or destoryed. In 291 * addition run the exit method for all existing network 292 * namespaces. 293 */ ··· 335 * @ops: pernet operations structure to manipulate 336 * 337 * Remove the pernet operations structure from the list to be 338 - * used when network namespaces are created or destoryed. In 339 * addition run the exit method for all existing network 340 * namespaces. 341 */
··· 287 * @ops: pernet operations structure to manipulate 288 * 289 * Remove the pernet operations structure from the list to be 290 + * used when network namespaces are created or destroyed. In 291 * addition run the exit method for all existing network 292 * namespaces. 293 */ ··· 335 * @ops: pernet operations structure to manipulate 336 * 337 * Remove the pernet operations structure from the list to be 338 + * used when network namespaces are created or destroyed. In 339 * addition run the exit method for all existing network 340 * namespaces. 341 */
+1 -1
net/rfkill/rfkill.c
··· 340 * rfkill_free - Mark rfkill structure for deletion 341 * @rfkill: rfkill structure to be destroyed 342 * 343 - * Decrements reference count of rfkill structure so it is destoryed. 344 * Note that rfkill_free() should _not_ be called after rfkill_unregister(). 345 */ 346 void rfkill_free(struct rfkill *rfkill)
··· 340 * rfkill_free - Mark rfkill structure for deletion 341 * @rfkill: rfkill structure to be destroyed 342 * 343 + * Decrements reference count of rfkill structure so it is destroyed. 344 * Note that rfkill_free() should _not_ be called after rfkill_unregister(). 345 */ 346 void rfkill_free(struct rfkill *rfkill)
+2 -2
net/sctp/sm_statefuns.c
··· 537 * 538 * This means that if we only want to abort associations 539 * in an authenticated way (i.e AUTH+ABORT), then we 540 - * can't destory this association just becuase the packet 541 * was malformed. 542 */ 543 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc)) ··· 4130 * 4131 * This means that if we only want to abort associations 4132 * in an authenticated way (i.e AUTH+ABORT), then we 4133 - * can't destory this association just becuase the packet 4134 * was malformed. 4135 */ 4136 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))
··· 537 * 538 * This means that if we only want to abort associations 539 * in an authenticated way (i.e AUTH+ABORT), then we 540 + * can't destroy this association just becuase the packet 541 * was malformed. 542 */ 543 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc)) ··· 4130 * 4131 * This means that if we only want to abort associations 4132 * in an authenticated way (i.e AUTH+ABORT), then we 4133 + * can't destroy this association just becuase the packet 4134 * was malformed. 4135 */ 4136 if (sctp_auth_recv_cid(SCTP_CID_ABORT, asoc))