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

typo fixes

Most of these fixes were already submitted for old kernel versions, and were
approved, but for some reason they never made it into the releases.

Because this is a consolidation of a couple old missed patches, it touches both
Kconfigs and documentation texts.

Signed-off-by: Matt LaPlante <kernel1@cyberdogtech.com>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>

authored by

Matt LaPlante and committed by
Adrian Bunk
01dd2fbf 0f035b8e

+186 -180
+9 -9
Documentation/arm/Samsung-S3C24XX/DMA.txt
··· 5 5 ------------ 6 6 7 7 The kernel provides an interface to manage DMA transfers 8 - using the DMA channels in the cpu, so that the central 8 + using the DMA channels in the CPU, so that the central 9 9 duty of managing channel mappings, and programming the 10 10 channel generators is in one place. 11 11 ··· 17 17 channels to all sources, which means that some devices 18 18 have a restricted number of channels that can be used. 19 19 20 - To allow flexibilty for each cpu type and board, the 21 - dma code can be given an dma ordering structure which 20 + To allow flexibility for each CPU type and board, the 21 + DMA code can be given a DMA ordering structure which 22 22 allows the order of channel search to be specified, as 23 23 well as allowing the prohibition of certain claims. 24 24 25 25 struct s3c24xx_dma_order has a list of channels, and 26 - each channel within has a slot for a list of dma 27 - channel numbers. The slots are searched in order, for 28 - the presence of a dma channel number with DMA_CH_VALID 29 - orred in. 26 + each channel within has a slot for a list of DMA 27 + channel numbers. The slots are searched in order for 28 + the presence of a DMA channel number with DMA_CH_VALID 29 + or-ed in. 30 30 31 31 If the order has the flag DMA_CH_NEVER set, then after 32 32 checking the channel list, the system will return no 33 33 found channel, thus denying the request. 34 34 35 35 A board support file can call s3c24xx_dma_order_set() 36 - to register an complete ordering set. The routine will 37 - copy the data, so the original can be discared with 36 + to register a complete ordering set. The routine will 37 + copy the data, so the original can be discarded with 38 38 __initdata. 39 39 40 40
+1 -1
Documentation/devices.txt
··· 2188 2188 2189 2189 136-143 char Unix98 PTY slaves 2190 2190 0 = /dev/pts/0 First Unix98 pseudo-TTY 2191 - 1 = /dev/pts/1 Second Unix98 pesudo-TTY 2191 + 1 = /dev/pts/1 Second Unix98 pseudo-TTY 2192 2192 ... 2193 2193 2194 2194 These device nodes are automatically generated with
+2 -2
Documentation/driver-model/devres.txt
··· 32 32 33 33 For one reason or another, low level drivers don't receive as much 34 34 attention or testing as core code, and bugs on driver detach or 35 - initilaization failure doesn't happen often enough to be noticeable. 35 + initialization failure don't happen often enough to be noticeable. 36 36 Init failure path is worse because it's much less travelled while 37 37 needs to handle multiple entry points. 38 38 ··· 160 160 devres_release_group(dev, NULL); 161 161 return err_code; 162 162 163 - As resource acquision failure usually means probe failure, constructs 163 + As resource acquisition failure usually means probe failure, constructs 164 164 like above are usually useful in midlayer driver (e.g. libata core 165 165 layer) where interface function shouldn't have side effect on failure. 166 166 For LLDs, just returning error code suffices in most cases.
+2 -2
Documentation/fb/deferred_io.txt
··· 3 3 4 4 Deferred IO is a way to delay and repurpose IO. It uses host memory as a 5 5 buffer and the MMU pagefault as a pretrigger for when to perform the device 6 - IO. The following example may be a useful explaination of how one such setup 6 + IO. The following example may be a useful explanation of how one such setup 7 7 works: 8 8 9 9 - userspace app like Xfbdev mmaps framebuffer ··· 28 28 29 29 For some types of nonvolatile high latency displays, the desired image is 30 30 the final image rather than the intermediate stages which is why it's okay 31 - to not update for each write that is occuring. 31 + to not update for each write that is occurring. 32 32 33 33 It may be the case that this is useful in other scenarios as well. Paul Mundt 34 34 has mentioned a case where it is beneficial to use the page count to decide
+1 -1
Documentation/filesystems/9p.txt
··· 54 54 aname=name aname specifies the file tree to access when the server is 55 55 offering several exported file systems. 56 56 57 - cache=mode specifies a cacheing policy. By default, no caches are used. 57 + cache=mode specifies a caching policy. By default, no caches are used. 58 58 loose = no attempts are made at consistency, 59 59 intended for exclusive, read-only mounts 60 60
+3 -3
Documentation/ia64/err_inject.txt
··· 21 21 22 22 Below is a sample application as part of the whole tool. The sample 23 23 can be used as a working test tool. Or it can be expanded to include 24 - more features. It also can be a integrated into a libary or other user 24 + more features. It also can be a integrated into a library or other user 25 25 application to have more thorough test. 26 26 27 - The sample application takes err.conf as error configuation input. Gcc 27 + The sample application takes err.conf as error configuration input. GCC 28 28 compiles the code. After you install err_inject driver, you can run 29 29 this sample application to inject errors. 30 30 ··· 809 809 } 810 810 811 811 /* Create semaphore: If one_lock, one semaphore for all processors. 812 - Otherwise, one sempaphore for each processor. */ 812 + Otherwise, one semaphore for each processor. */ 813 813 if (one_lock) { 814 814 if (create_sem(0)) { 815 815 printf("Can not create semaphore...exit\n");
+4 -4
Documentation/input/atarikbd.txt
··· 170 170 keys. Any keys down at power-up are presumed to be stuck, and their BREAK 171 171 (sic) code is returned (which without the preceding MAKE code is a flag for a 172 172 keyboard error). If the controller self-test completes without error, the code 173 - 0xF0 is returned. (This code will be used to indicate the version/rlease of 173 + 0xF0 is returned. (This code will be used to indicate the version/release of 174 174 the ikbd controller. The first release of the ikbd is version 0xF0, should 175 175 there be a second release it will be 0xF1, and so on.) 176 176 The ikbd defaults to a mouse position reporting with threshold of 1 unit in ··· 413 413 %nnnnmmmm ; where m is JOYSTICK1 state 414 414 ; and n is JOYSTICK0 state 415 415 416 - Sets the ikbd to do nothing but monitor the serial command lne, maintain the 416 + Sets the ikbd to do nothing but monitor the serial command line, maintain the 417 417 time-of-day clock, and monitor the joystick. The rate sets the interval 418 418 between joystick samples. 419 419 N.B. The user should not set the rate higher than the serial communications ··· 446 446 ; until vertical cursor key is generated before RY 447 447 ; has elapsed 448 448 VX ; length (in tenths of seconds) of joystick closure 449 - ; until horizontal cursor keystokes are generated 449 + ; until horizontal cursor keystrokes are generated 450 450 ; after RX has elapsed 451 451 VY ; length (in tenths of seconds) of joystick closure 452 - ; until vertical cursor keystokes are generated 452 + ; until vertical cursor keystrokes are generated 453 453 ; after RY has elapsed 454 454 455 455 In this mode, joystick 0 is scanned in a way that simulates cursor keystrokes.
+10 -6
Documentation/input/iforce-protocol.txt
··· 7 7 send an email to: johann.deneux@gmail.com 8 8 9 9 ** WARNING ** 10 - I may not be held responsible for any dammage or harm caused if you try to 10 + I shall not be held responsible for any damage or harm caused if you try to 11 11 send data to your I-Force device based on what you read in this document. 12 12 13 13 ** Preliminary Notes: ··· 151 151 Query command. Length varies according to the query type. 152 152 The general format of this packet is: 153 153 ff 01 QUERY [INDEX] CHECKSUM 154 - reponses are of the same form: 154 + responses are of the same form: 155 155 FF LEN QUERY VALUE_QUERIED CHECKSUM2 156 156 where LEN = 1 + length(VALUE_QUERIED) 157 157 158 158 **** Query ram size **** 159 159 QUERY = 42 ('B'uffer size) 160 - The device should reply with the same packet plus two additionnal bytes 160 + The device should reply with the same packet plus two additional bytes 161 161 containing the size of the memory: 162 162 ff 03 42 03 e8 CS would mean that the device has 1000 bytes of ram available. 163 163 ··· 234 234 235 235 ** Appendix: How to study the protocol ? ** 236 236 237 - 1. Generate effects using the force editor provided with the DirectX SDK, or use Immersion Studio (freely available at their web site in the developer section: www.immersion.com) 238 - 2. Start a soft spying RS232 or USB (depending on where you connected your joystick/wheel). I used ComPortSpy from fCoder (alpha version!) 237 + 1. Generate effects using the force editor provided with the DirectX SDK, or 238 + use Immersion Studio (freely available at their web site in the developer section: 239 + www.immersion.com) 240 + 2. Start a soft spying RS232 or USB (depending on where you connected your 241 + joystick/wheel). I used ComPortSpy from fCoder (alpha version!) 239 242 3. Play the effect, and watch what happens on the spy screen. 240 243 241 244 A few words about ComPortSpy: 242 - At first glance, this soft seems, hum, well... buggy. In fact, data appear with a few seconds latency. Personnaly, I restart it every time I play an effect. 245 + At first glance, this software seems, hum, well... buggy. In fact, data appear with a 246 + few seconds latency. Personally, I restart it every time I play an effect. 243 247 Remember it's free (as in free beer) and alpha! 244 248 245 249 ** URLS **
+1 -1
Documentation/input/input-programming.txt
··· 79 79 booting the kernel, it grabs the required resources (it should also check 80 80 for the presence of the device). 81 81 82 - Then it allocates a new input device structure with input_aloocate_device() 82 + Then it allocates a new input device structure with input_allocate_device() 83 83 and sets up input bitfields. This way the device driver tells the other 84 84 parts of the input systems what it is - what events can be generated or 85 85 accepted by this input device. Our example device can only generate EV_KEY
+2 -2
Documentation/kernel-docs.txt
··· 76 76 * Title: "Conceptual Architecture of the Linux Kernel" 77 77 Author: Ivan T. Bowman. 78 78 URL: http://plg.uwaterloo.ca/~itbowman/papers/CS746G-a1.html 79 - Keywords: conceptual software arquitecture, extracted design, 79 + Keywords: conceptual software architecture, extracted design, 80 80 reverse engineering, system structure. 81 - Description: Conceptual software arquitecture of the Linux kernel, 81 + Description: Conceptual software architecture of the Linux kernel, 82 82 automatically extracted from the source code. Very detailed. Good 83 83 figures. Gives good overall kernel understanding. 84 84
+1 -1
Documentation/networking/bcm43xx.txt
··· 37 37 required. The firmware used by the chip is the intellectual property 38 38 of Broadcom and they have not given the bcm43xx team redistribution 39 39 rights to this firmware. Since we cannot legally redistribute 40 - the firwmare we cannot include it with the driver. Furthermore, it 40 + the firmware we cannot include it with the driver. Furthermore, it 41 41 cannot be placed in the downloadable archives of any distributing 42 42 organization; therefore, the user is responsible for obtaining the 43 43 firmware and placing it in the appropriate location so that the driver
+1 -1
Documentation/networking/rxrpc.txt
··· 689 689 buffers manipulated directly. 690 690 691 691 To use the RxRPC facility, a kernel utility must still open an AF_RXRPC socket, 692 - bind an addess as appropriate and listen if it's to be a server socket, but 692 + bind an address as appropriate and listen if it's to be a server socket, but 693 693 then it passes this to the kernel interface functions. 694 694 695 695 The kernel interface functions are as follows:
+3 -3
Documentation/networking/udplite.txt
··· 12 12 For in-depth information, you can consult: 13 13 14 14 o The UDP-Lite Homepage: http://www.erg.abdn.ac.uk/users/gerrit/udp-lite/ 15 - Fom here you can also download some example application source code. 15 + From here you can also download some example application source code. 16 16 17 17 o The UDP-Lite HOWTO on 18 18 http://www.erg.abdn.ac.uk/users/gerrit/udp-lite/files/UDP-Lite-HOWTO.txt ··· 223 223 While it is important that such cases are dealt with correctly, they 224 224 are (annoyingly) rare: UDP-Lite is designed for optimising multimedia 225 225 performance over wireless (or generally noisy) links and thus smaller 226 - coverage lenghts are likely to be expected. 226 + coverage lengths are likely to be expected. 227 227 228 228 229 229 V) UDP-LITE RUNTIME STATISTICS AND THEIR MEANING ··· 259 259 VI) IPTABLES 260 260 261 261 There is packet match support for UDP-Lite as well as support for the LOG target. 262 - If you copy and paste the following line into /etc/protcols, 262 + If you copy and paste the following line into /etc/protocols, 263 263 264 264 udplite 136 UDP-Lite # UDP-Lite [RFC 3828] 265 265
+1 -1
Documentation/power/swsusp-and-swap-files.txt
··· 39 39 where <swap_file_partition> is the partition on which the swap file is located 40 40 and <swap_file_offset> is the offset of the swap header determined by the 41 41 application in 2) (of course, this step may be carried out automatically 42 - by the same application that determies the swap file's header offset using the 42 + by the same application that determines the swap file's header offset using the 43 43 FIBMAP ioctl) 44 44 45 45 OR
+2 -2
Documentation/powerpc/eeh-pci-error-recovery.txt
··· 36 36 EEH was originally designed to guard against hardware failure, such 37 37 as PCI cards dying from heat, humidity, dust, vibration and bad 38 38 electrical connections. The vast majority of EEH errors seen in 39 - "real life" are due to eithr poorly seated PCI cards, or, 40 - unfortunately quite commonly, due device driver bugs, device firmware 39 + "real life" are due to either poorly seated PCI cards, or, 40 + unfortunately quite commonly, due to device driver bugs, device firmware 41 41 bugs, and sometimes PCI card hardware bugs. 42 42 43 43 The most common software bug, is one that causes the device to
+6 -6
Documentation/powerpc/mpc52xx-device-tree-bindings.txt
··· 17 17 describes what devices are present on the board and how they are 18 18 connected. The device tree can either be passed as a binary blob (as 19 19 described in Documentation/powerpc/booting-without-of.txt), or passed 20 - by Open Firmare (IEEE 1275) compatible firmware using an OF compatible 20 + by Open Firmware (IEEE 1275) compatible firmware using an OF compatible 21 21 client interface API. 22 22 23 23 This document specifies the requirements on the device-tree for mpc5200 24 24 based boards. These requirements are above and beyond the details 25 - specified in either the OpenFirmware spec or booting-without-of.txt 25 + specified in either the Open Firmware spec or booting-without-of.txt 26 26 27 27 All new mpc5200-based boards are expected to match this document. In 28 28 cases where this document is not sufficient to support a new board port, ··· 73 73 selected. 74 74 75 75 The split between the MPC5200 and the MPC5200B leaves a bit of a 76 - connundrum. How should the compatible property be set up to provide 77 - maximum compatability information; but still acurately describe the 76 + conundrum. How should the compatible property be set up to provide 77 + maximum compatibility information; but still accurately describe the 78 78 chip? For the MPC5200; the answer is easy. Most of the SoC devices 79 79 originally appeared on the MPC5200. Since they didn't exist anywhere 80 80 else; the 5200 compatible properties will contain only one item; ··· 84 84 silicon bugs and it adds a small number of enhancements. Most of the 85 85 devices either provide exactly the same interface as on the 5200. A few 86 86 devices have extra functions but still have a backwards compatible mode. 87 - To express this infomation as completely as possible, 5200B device trees 87 + To express this information as completely as possible, 5200B device trees 88 88 should have two items in the compatible list; 89 89 "mpc5200b-<device>\0mpc5200-<device>". It is *strongly* recommended 90 90 that 5200B device trees follow this convention (instead of only listing ··· 199 199 ata@<addr> ata mpc5200-ata IDE ATA interface 200 200 i2c@<addr> i2c mpc5200-i2c I2C controller 201 201 usb@<addr> usb-ohci-be mpc5200-ohci,ohci-be USB controller 202 - xlb@<addr> xlb mpc5200-xlb XLB arbritrator 202 + xlb@<addr> xlb mpc5200-xlb XLB arbitrator 203 203 204 204 Important child node properties 205 205 name type description
+1 -1
Documentation/scsi/aic79xx.txt
··· 120 120 list size to avoid SCSI malloc pool fragmentation. 121 121 - Cleanup channel display in our /proc output. 122 122 - Workaround duplicate device entries in the mid-layer 123 - devlice list during add-single-device. 123 + device list during add-single-device. 124 124 125 125 1.3.6 (March 28th, 2003) 126 126 - Correct a double free in the Domain Validation code.
+3 -3
Documentation/scsi/aic7xxx.txt
··· 159 159 - Add support for 2.5.X's scsi_report_device_reset(). 160 160 161 161 6.2.34 (May 5th, 2003) 162 - - Fix locking regression instroduced in 6.2.29 that 162 + - Fix locking regression introduced in 6.2.29 that 163 163 could cause a lock order reversal between the io_request_lock 164 164 and our per-softc lock. This was only possible on RH9, 165 165 SuSE, and kernel.org 2.4.X kernels. ··· 264 264 Option: tag_info:{{value[,value...]}[,{value[,value...]}...]} 265 265 Definition: Set the per-target tagged queue depth on a 266 266 per controller basis. Both controllers and targets 267 - may be ommitted indicating that they should retain 267 + may be omitted indicating that they should retain 268 268 the default tag depth. 269 269 Examples: tag_info:{{16,32,32,64,8,8,,32,32,32,32,32,32,32,32,32} 270 270 On Controller 0 ··· 290 290 ----------------------------------------------------------------- 291 291 Option: dv: {value[,value...]} 292 292 Definition: Set Domain Validation Policy on a per-controller basis. 293 - Controllers may be ommitted indicating that 293 + Controllers may be omitted indicating that 294 294 they should retain the default read streaming setting. 295 295 Example: dv:{-1,0,,1,1,0} 296 296 On Controller 0 leave DV at its default setting.
+29 -29
Documentation/scsi/ibmmca.txt
··· 21 21 versions older than 4.0 do not work with kernels 2.4.0 or later! If you 22 22 try to compile your kernel with the wrong driver source, the 23 23 compilation is aborted and you get a corresponding error message. This is 24 - no bug in the driver. It prevents you from using the wrong sourcecode 24 + no bug in the driver; it prevents you from using the wrong source code 25 25 with the wrong kernel version. 26 26 27 27 Authors of this Driver ··· 58 58 5 Users' Manual 59 59 5.1 Commandline Parameters 60 60 5.2 Troubleshooting 61 - 5.3 Bugreports 61 + 5.3 Bug reports 62 62 5.4 Support WWW-page 63 63 6 References 64 64 7 Credits to ··· 71 71 72 72 1 Abstract 73 73 ---------- 74 - This README-file describes the IBM SCSI-subsystem low level driver for 75 - Linux. The descriptions which were formerly kept in the source-code have 76 - been taken out to this file to easify the codes' readability. The driver 74 + This README-file describes the IBM SCSI-subsystem low level driver for 75 + Linux. The descriptions which were formerly kept in the source code have 76 + been taken out of this file to simplify the codes readability. The driver 77 77 description has been updated, as most of the former description was already 78 - quite outdated. The history of the driver development is also kept inside 79 - here. Multiple historical developments have been summarized to shorten the 80 - textsize a bit. At the end of this file you can find a small manual for 78 + quite outdated. The history of the driver development is also kept inside 79 + here. Multiple historical developments have been summarized to shorten the 80 + text size a bit. At the end of this file you can find a small manual for 81 81 this driver and hints to get it running on your machine. 82 82 83 83 2 Driver Description ··· 186 186 between 0 and 7). The IBM SCSI-2 F/W adapter offers this on up to two 187 187 busses and provides support for 30 logical devices at the same time, where 188 188 in wide-addressing mode you can have 16 puns with 32 luns on each device. 189 - This section dexribes you the handling of devices on non-F/W adapters. 189 + This section describes the handling of devices on non-F/W adapters. 190 190 Just imagine, that you can have 16 * 32 = 512 devices on a F/W adapter 191 191 which means a lot of possible devices for such a small machine. 192 192 ··· 209 209 -------------------------------------------------------- 210 210 One consequence of information hiding is that the real (pun,lun) 211 211 numbers are also hidden. The two possibilities to get around this problem 212 - is to offer fake pun/lun combinations to the operating system or to 212 + are to offer fake pun/lun combinations to the operating system or to 213 213 delete the whole mapping of the adapter and to reassign the ldns, using 214 214 the immediate assign command of the SCSI-subsystem for probing through 215 - all possible pun/lun combinations. a ldn is a "logical device number" 215 + all possible pun/lun combinations. An ldn is a "logical device number" 216 216 which is used by IBM SCSI-subsystems to access some valid SCSI-device. 217 217 At the beginning of the development of this driver, the following approach 218 218 was used: ··· 251 251 lun>0 or to non-existing devices, in order to satisfy the subsystem, if 252 252 there are less than 15 SCSI-devices connected. In the case of more than 15 253 253 devices, the dynamical mapping goes active. If the get_scsi[][] reports a 254 - device to be existant, but it has no ldn assigned, it gets a ldn out of 7 255 - to 14. The numbers are assigned in cyclic order. Therefore it takes 8 256 - dynamical reassignments on the SCSI-devices, until a certain device 254 + device to be existent, but it has no ldn assigned, it gets an ldn out of 7 255 + to 14. The numbers are assigned in cyclic order, therefore it takes 8 256 + dynamical reassignments on the SCSI-devices until a certain device 257 257 loses its ldn again. This assures that dynamical remapping is avoided 258 258 during intense I/O between up to 15 SCSI-devices (means pun,lun 259 259 combinations). A further advantage of this method is that people who ··· 551 551 than devices are available, they are assigned to non existing pun,lun 552 552 combinations to satisfy the adapter. With this, the dynamical mapping 553 553 was possible to implement. (For further info see the text in the 554 - source-code and in the description below. Read the description 554 + source code and in the description below. Read the description 555 555 below BEFORE installing this driver on your system!) 556 556 2) Changed the name IBMMCA_DRIVER_VERSION to IBMMCA_SCSI_DRIVER_VERSION. 557 557 3) The LED-display shows on PS/2-95 no longer the ldn, but the SCSI-ID ··· 762 762 - Michael Lang 763 763 764 764 Apr 23, 2000 (v3.2pre1) 765 - 1) During a very long time, I collected a huge amount of bugreports from 765 + 1) During a very long time, I collected a huge amount of bug reports from 766 766 various people, trying really quite different things on their SCSI- 767 - PS/2s. Today, all these bugreports are taken into account and should be 767 + PS/2s. Today, all these bug reports are taken into account and should be 768 768 mostly solved. The major topics were: 769 769 - Driver crashes during boottime by no obvious reason. 770 770 - Driver panics while the midlevel-SCSI-driver is trying to inquire ··· 819 819 - Michael Lang 820 820 821 821 July 17, 2000 (v3.2pre8) 822 - A long period of collecting bugreports from all corners of the world 822 + A long period of collecting bug reports from all corners of the world 823 823 now lead to the following corrections to the code: 824 824 1) SCSI-2 F/W support crashed with a COMMAND ERROR. The reason for this 825 825 was that it is possible to disable Fast-SCSI for the external bus. ··· 873 873 July 26, 2000 (v3.2pre11) 874 874 1) I passed a horrible weekend getting mad with NMIs on kernel 2.2.14 and 875 875 a model 9595. Asking around in the community, nobody except of me has 876 - seen such errors. Weired, but I am trying to recompile everything on 876 + seen such errors. Weird, but I am trying to recompile everything on 877 877 the model 9595. Maybe, as I use a specially modified gcc, that could 878 878 cause problems. But, it was not the reason. The true background was, 879 879 that the kernel was compiled for i386 and the 9595 has a 486DX-2. ··· 886 886 alive rotator during boottime. This makes sense, when no monitor is 887 887 connected to the system. You can get rid of all display activity, if 888 888 you do not use any parameter or just ibmmcascsi=activity, for the 889 - harddrive activity LED, existant on all PS/2, except models 8595-XXX. 889 + harddrive activity LED, existent on all PS/2, except models 8595-XXX. 890 890 If no monitor is available, please use ibmmcascsi=display, which works 891 891 fine together with the linuxinfo utility for the LED-panel. 892 892 - Michael Lang ··· 1115 1115 If this really happens, do also send e-mail to the maintainer, as 1116 1116 forced detection should be never necessary. Forced detection is in 1117 1117 principal some flaw of the driver adapter detection and goes into 1118 - bugreports. 1118 + bug reports. 1119 1119 Q: The driver screws up, if it starts to probe SCSI-devices, is there 1120 1120 some way out of it? 1121 1121 A: Yes, that was some recognition problem of the correct SCSI-adapter ··· 1172 1172 recommended version is 3.2 or later. Here, the F/W support is in 1173 1173 a stable and reliable condition. Wide-addressing is in addition 1174 1174 supported. 1175 - Q: I get a Ooops message and something like "killing interrupt". 1175 + Q: I get an Oops message and something like "killing interrupt". 1176 1176 A: The reason for this is that the IBM SCSI-subsystem only sends a 1177 1177 termination status back, if some error appeared. In former releases 1178 1178 of the driver, it was not checked, if the termination status block ··· 1213 1213 problem. Not yet tried, but guessing that it could work. To get this, 1214 1214 set unchecked_isa_dma argument of ibmmca.h from 0 to 1. 1215 1215 1216 - 5.3 Bugreports 1216 + 5.3 Bug reports 1217 1217 -------------- 1218 - If you really find bugs in the sourcecode or the driver will successfully 1218 + If you really find bugs in the source code or the driver will successfully 1219 1219 refuse to work on your machine, you should send a bug report to me. The 1220 1220 best for this is to follow the instructions on the WWW-page for this 1221 1221 driver. Fill out the bug-report form, placed on the WWW-page and ship it, 1222 1222 so the bugs can be taken into account with maximum efforts. But, please 1223 1223 do not send bug reports about this driver to Linus Torvalds or Leonard 1224 - Zubkoff, as Linus is burried in E-Mail and Leonard is supervising all 1224 + Zubkoff, as Linus is buried in E-Mail and Leonard is supervising all 1225 1225 SCSI-drivers and won't have the time left to look inside every single 1226 1226 driver to fix a bug and especially DO NOT send modified code to Linus 1227 1227 Torvalds or Alan J. Cox which has not been checked here!!! They are both 1228 - quite burried in E-mail (as me, sometimes, too) and one should first check 1228 + quite buried in E-mail (as me, sometimes, too) and one should first check 1229 1229 for problems on my local teststand. Recently, I got a lot of 1230 - bugreports for errors in the ibmmca.c code, which I could not imagine, but 1230 + bug reports for errors in the ibmmca.c code, which I could not imagine, but 1231 1231 a look inside some Linux-distribution showed me quite often some modified 1232 1232 code, which did no longer work on most other machines than the one of the 1233 1233 modifier. Ok, so now that there is maintenance service available for this ··· 1261 1261 some e-mail directly, but at least with the same information as required by 1262 1262 the formular. 1263 1263 1264 - If you have extensive bugreports, including Ooops messages and 1264 + If you have extensive bug reports, including Oops messages and 1265 1265 screen-shots, please feel free to send it directly to the address 1266 1266 of the maintainer, too. The current address of the maintainer is: 1267 1267 ··· 1318 1318 detailed bug reports and ideas for this driver (and his 1319 1319 patience ;-)). 1320 1320 Alan J. Cox 1321 - for his bugreports and his bold activities in cross-checking 1321 + for his bug reports and his bold activities in cross-checking 1322 1322 the driver-code with his teststand. 1323 1323 1324 1324 7.2 Sponsors & Supporters
+4 -4
Documentation/sound/alsa/soc/DAI.txt
··· 20 20 === 21 21 22 22 I2S is a common 4 wire DAI used in HiFi, STB and portable devices. The Tx and 23 - Rx lines are used for audio transmision, whilst the bit clock (BCLK) and 23 + Rx lines are used for audio transmission, whilst the bit clock (BCLK) and 24 24 left/right clock (LRC) synchronise the link. I2S is flexible in that either the 25 25 controller or CODEC can drive (master) the BCLK and LRC clock lines. Bit clock 26 26 usually varies depending on the sample rate and the master system clock 27 27 (SYSCLK). LRCLK is the same as the sample rate. A few devices support separate 28 - ADC and DAC LRCLK's, this allows for similtanious capture and playback at 28 + ADC and DAC LRCLK's, this allows for simultaneous capture and playback at 29 29 different sample rates. 30 30 31 31 I2S has several different operating modes:- ··· 41 41 PCM 42 42 === 43 43 44 - PCM is another 4 wire interface, very similar to I2S, that can support a more 44 + PCM is another 4 wire interface, very similar to I2S, which can support a more 45 45 flexible protocol. It has bit clock (BCLK) and sync (SYNC) lines that are used 46 46 to synchronise the link whilst the Tx and Rx lines are used to transmit and 47 47 receive the audio data. Bit clock usually varies depending on sample rate 48 48 whilst sync runs at the sample rate. PCM also supports Time Division 49 - Multiplexing (TDM) in that several devices can use the bus similtaniuosly (This 49 + Multiplexing (TDM) in that several devices can use the bus simultaneously (this 50 50 is sometimes referred to as network mode). 51 51 52 52 Common PCM operating modes:-
+5 -5
Documentation/sound/alsa/soc/clocking.txt
··· 2 2 ============== 3 3 4 4 This text describes the audio clocking terms in ASoC and digital audio in 5 - general. Note: Audio clocking can be complex ! 5 + general. Note: Audio clocking can be complex! 6 6 7 7 8 8 Master Clock 9 9 ------------ 10 10 11 - Every audio subsystem is driven by a master clock (sometimes refered to as MCLK 11 + Every audio subsystem is driven by a master clock (sometimes referred to as MCLK 12 12 or SYSCLK). This audio master clock can be derived from a number of sources 13 13 (e.g. crystal, PLL, CPU clock) and is responsible for producing the correct 14 14 audio playback and capture sample rates. 15 15 16 - Some master clocks (e.g. PLL's and CPU based clocks) are configuarble in that 16 + Some master clocks (e.g. PLL's and CPU based clocks) are configurable in that 17 17 their speed can be altered by software (depending on the system use and to save 18 - power). Other master clocks are fixed at at set frequency (i.e. crystals). 18 + power). Other master clocks are fixed at a set frequency (i.e. crystals). 19 19 20 20 21 21 DAI Clocks ··· 44 44 it's best to configure BCLK to the lowest possible speed (depending on your 45 45 rate, number of channels and wordsize) to save on power. 46 46 47 - It's also desireable to use the codec (if possible) to drive (or master) the 47 + It's also desirable to use the codec (if possible) to drive (or master) the 48 48 audio clocks as it's usually gives more accurate sample rates than the CPU. 49 49 50 50
+3 -3
Documentation/sound/alsa/soc/codec.txt
··· 19 19 6) DAPM event handler. 20 20 7) DAC Digital mute control. 21 21 22 - It's probably best to use this guide in conjuction with the existing codec 22 + It's probably best to use this guide in conjunction with the existing codec 23 23 driver code in sound/soc/codecs/ 24 24 25 25 ASoC Codec driver breakdown ··· 28 28 1 - Codec DAI and PCM configuration 29 29 ----------------------------------- 30 30 Each codec driver must have a struct snd_soc_codec_dai to define it's DAI and 31 - PCM's capablities and operations. This struct is exported so that it can be 31 + PCM's capabilities and operations. This struct is exported so that it can be 32 32 registered with the core by your machine driver. 33 33 34 34 e.g. ··· 67 67 68 68 2 - Codec control IO 69 69 -------------------- 70 - The codec can ususally be controlled via an I2C or SPI style interface (AC97 70 + The codec can usually be controlled via an I2C or SPI style interface (AC97 71 71 combines control with data in the DAI). The codec drivers will have to provide 72 72 functions to read and write the codec registers along with supplying a register 73 73 cache:-
+2 -2
Documentation/sound/alsa/soc/dapm.txt
··· 11 11 12 12 DAPM is also completely transparent to all user space applications as all power 13 13 switching is done within the ASoC core. No code changes or recompiling are 14 - required for user space applications. DAPM makes power switching descisions based 14 + required for user space applications. DAPM makes power switching decisions based 15 15 upon any audio stream (capture/playback) activity and audio mixer settings 16 16 within the device. 17 17 ··· 38 38 Enabled and disabled when stream playback/capture is started and 39 39 stopped respectively. e.g. aplay, arecord. 40 40 41 - All DAPM power switching descisons are made automatically by consulting an audio 41 + All DAPM power switching decisions are made automatically by consulting an audio 42 42 routing map of the whole machine. This map is specific to each machine and 43 43 consists of the interconnections between every audio component (including 44 44 internal codec components). All audio components that effect power are called
+9 -8
Documentation/sound/alsa/soc/overview.txt
··· 2 2 ============== 3 3 4 4 The overall project goal of the ALSA System on Chip (ASoC) layer is to provide 5 - better ALSA support for embedded system on chip procesors (e.g. pxa2xx, au1x00, 5 + better ALSA support for embedded system-on-chip processors (e.g. pxa2xx, au1x00, 6 6 iMX, etc) and portable audio codecs. Currently there is some support in the 7 7 kernel for SoC audio, however it has some limitations:- 8 8 9 9 * Currently, codec drivers are often tightly coupled to the underlying SoC 10 - cpu. This is not ideal and leads to code duplication i.e. Linux now has 4 10 + CPU. This is not ideal and leads to code duplication i.e. Linux now has 4 11 11 different wm8731 drivers for 4 different SoC platforms. 12 12 13 - * There is no standard method to signal user initiated audio events. 14 - e.g. Headphone/Mic insertion, Headphone/Mic detection after an insertion 15 - event. These are quite common events on portable devices and ofter require 16 - machine specific code to re route audio, enable amps etc after such an event. 13 + * There is no standard method to signal user initiated audio events (e.g. 14 + Headphone/Mic insertion, Headphone/Mic detection after an insertion 15 + event). These are quite common events on portable devices and often require 16 + machine specific code to re-route audio, enable amps, etc., after such an 17 + event. 17 18 18 19 * Current drivers tend to power up the entire codec when playing 19 20 (or recording) audio. This is fine for a PC, but tends to waste a lot of ··· 45 44 signals the codec when to change power states. 46 45 47 46 * Machine specific controls: Allow machines to add controls to the sound card 48 - e.g. volume control for speaker amp. 47 + (e.g. volume control for speaker amp). 49 48 50 49 To achieve all this, ASoC basically splits an embedded audio system into 3 51 50 components :- ··· 58 57 interface drivers (e.g. I2S, AC97, PCM) for that platform. 59 58 60 59 * Machine driver: The machine driver handles any machine specific controls and 61 - audio events. i.e. turing on an amp at start of playback. 60 + audio events (e.g. turning on an amp at start of playback). 62 61 63 62 64 63 Documentation
+1 -1
Documentation/sound/alsa/soc/platform.txt
··· 20 20 int (*trigger)(struct snd_pcm_substream *, int); 21 21 }; 22 22 23 - The platform driver exports it's DMA functionailty via struct snd_soc_platform:- 23 + The platform driver exports its DMA functionality via struct snd_soc_platform:- 24 24 25 25 struct snd_soc_platform { 26 26 char *name;
+3 -3
Documentation/sound/alsa/soc/pops_clicks.txt
··· 2 2 ===================== 3 3 4 4 Pops and clicks are unwanted audio artifacts caused by the powering up and down 5 - of components within the audio subsystem. This is noticable on PC's when an 5 + of components within the audio subsystem. This is noticeable on PCs when an 6 6 audio module is either loaded or unloaded (at module load time the sound card is 7 7 powered up and causes a popping noise on the speakers). 8 8 ··· 16 16 =================================== 17 17 18 18 Playback pops in portable audio subsystems cannot be completely eliminated atm, 19 - however future audio codec hardware will have better pop and click supression. 19 + however future audio codec hardware will have better pop and click suppression. 20 20 Pops can be reduced within playback by powering the audio components in a 21 21 specific order. This order is different for startup and shutdown and follows 22 22 some basic rules:- ··· 33 33 ================================== 34 34 35 35 Capture artifacts are somewhat easier to get rid as we can delay activating the 36 - ADC until all the pops have occured. This follows similar power rules to 36 + ADC until all the pops have occurred. This follows similar power rules to 37 37 playback in that components are powered in a sequence depending upon stream 38 38 startup or shutdown. 39 39
+1 -1
Documentation/thinkpad-acpi.txt
··· 1035 1035 1036 1036 An enabled fan in level "auto" may stop spinning if the EC decides the 1037 1037 ThinkPad is cool enough and doesn't need the extra airflow. This is 1038 - normal, and the EC will spin the fan up if the varios thermal readings 1038 + normal, and the EC will spin the fan up if the various thermal readings 1039 1039 rise too much. 1040 1040 1041 1041 On the X40, this seems to depend on the CPU and HDD temperatures.
+1 -1
arch/arm/Kconfig
··· 851 851 help 852 852 kexec is a system call that implements the ability to shutdown your 853 853 current kernel, and to start another kernel. It is like a reboot 854 - but it is indepedent of the system firmware. And like a reboot 854 + but it is independent of the system firmware. And like a reboot 855 855 you can start any kernel with it, not just Linux. 856 856 857 857 It is an ongoing process to be certain the hardware in a machine
+1 -1
arch/avr32/Kconfig
··· 189 189 190 190 endmenu 191 191 192 - menu "Power managment options" 192 + menu "Power management options" 193 193 194 194 menu "CPU Frequency scaling" 195 195
+36 -35
arch/blackfin/Kconfig
··· 613 613 bool "Locate interrupt entry code in L1 Memory" 614 614 default y 615 615 help 616 - If enabled interrupt entry code (STORE/RESTORE CONTEXT) is linked 617 - into L1 instruction memory.(less latency) 616 + If enabled, interrupt entry code (STORE/RESTORE CONTEXT) is linked 617 + into L1 instruction memory. (less latency) 618 618 619 619 config EXCPT_IRQ_SYSC_L1 620 - bool "Locate entire ASM lowlevel excepetion / interrupt - Syscall and CPLB handler code in L1 Memory" 620 + bool "Locate entire ASM lowlevel exception / interrupt - Syscall and CPLB handler code in L1 Memory" 621 621 default y 622 622 help 623 - If enabled entire ASM lowlevel exception and interrupt entry code (STORE/RESTORE CONTEXT) is linked 624 - into L1 instruction memory.(less latency) 623 + If enabled, the entire ASM lowlevel exception and interrupt entry code 624 + (STORE/RESTORE CONTEXT) is linked into L1 instruction memory. 625 + (less latency) 625 626 626 627 config DO_IRQ_L1 627 628 bool "Locate frequently called do_irq dispatcher function in L1 Memory" 628 629 default y 629 630 help 630 - If enabled frequently called do_irq dispatcher function is linked 631 - into L1 instruction memory.(less latency) 631 + If enabled, the frequently called do_irq dispatcher function is linked 632 + into L1 instruction memory. (less latency) 632 633 633 634 config CORE_TIMER_IRQ_L1 634 635 bool "Locate frequently called timer_interrupt() function in L1 Memory" 635 636 default y 636 637 help 637 - If enabled frequently called timer_interrupt() function is linked 638 - into L1 instruction memory.(less latency) 638 + If enabled, the frequently called timer_interrupt() function is linked 639 + into L1 instruction memory. (less latency) 639 640 640 641 config IDLE_L1 641 642 bool "Locate frequently idle function in L1 Memory" 642 643 default y 643 644 help 644 - If enabled frequently called idle function is linked 645 - into L1 instruction memory.(less latency) 645 + If enabled, the frequently called idle function is linked 646 + into L1 instruction memory. (less latency) 646 647 647 648 config SCHEDULE_L1 648 649 bool "Locate kernel schedule function in L1 Memory" 649 650 default y 650 651 help 651 - If enabled frequently called kernel schedule is linked 652 - into L1 instruction memory.(less latency) 652 + If enabled, the frequently called kernel schedule is linked 653 + into L1 instruction memory. (less latency) 653 654 654 655 config ARITHMETIC_OPS_L1 655 656 bool "Locate kernel owned arithmetic functions in L1 Memory" 656 657 default y 657 658 help 658 - If enabled arithmetic functions are linked 659 - into L1 instruction memory.(less latency) 659 + If enabled, arithmetic functions are linked 660 + into L1 instruction memory. (less latency) 660 661 661 662 config ACCESS_OK_L1 662 663 bool "Locate access_ok function in L1 Memory" 663 664 default y 664 665 help 665 - If enabled access_ok function is linked 666 - into L1 instruction memory.(less latency) 666 + If enabled, the access_ok function is linked 667 + into L1 instruction memory. (less latency) 667 668 668 669 config MEMSET_L1 669 670 bool "Locate memset function in L1 Memory" 670 671 default y 671 672 help 672 - If enabled memset function is linked 673 - into L1 instruction memory.(less latency) 673 + If enabled, the memset function is linked 674 + into L1 instruction memory. (less latency) 674 675 675 676 config MEMCPY_L1 676 677 bool "Locate memcpy function in L1 Memory" 677 678 default y 678 679 help 679 - If enabled memcpy function is linked 680 - into L1 instruction memory.(less latency) 680 + If enabled, the memcpy function is linked 681 + into L1 instruction memory. (less latency) 681 682 682 683 config SYS_BFIN_SPINLOCK_L1 683 684 bool "Locate sys_bfin_spinlock function in L1 Memory" 684 685 default y 685 686 help 686 - If enabled sys_bfin_spinlock function is linked 687 - into L1 instruction memory.(less latency) 687 + If enabled, sys_bfin_spinlock function is linked 688 + into L1 instruction memory. (less latency) 688 689 689 690 config IP_CHECKSUM_L1 690 691 bool "Locate IP Checksum function in L1 Memory" 691 692 default n 692 693 help 693 - If enabled IP Checksum function is linked 694 - into L1 instruction memory.(less latency) 694 + If enabled, the IP Checksum function is linked 695 + into L1 instruction memory. (less latency) 695 696 696 697 config CACHELINE_ALIGNED_L1 697 698 bool "Locate cacheline_aligned data to L1 Data Memory" ··· 700 699 default n if BF54x 701 700 depends on !BF531 702 701 help 703 - If enabled cacheline_anligned data is linked 704 - into L1 data memory.(less latency) 702 + If enabled, cacheline_anligned data is linked 703 + into L1 data memory. (less latency) 705 704 706 705 config SYSCALL_TAB_L1 707 706 bool "Locate Syscall Table L1 Data Memory" 708 707 default n 709 708 depends on !BF531 710 709 help 711 - If enabled the Syscall LUT is linked 712 - into L1 data memory.(less latency) 710 + If enabled, the Syscall LUT is linked 711 + into L1 data memory. (less latency) 713 712 714 713 config CPLB_SWITCH_TAB_L1 715 714 bool "Locate CPLB Switch Tables L1 Data Memory" 716 715 default n 717 716 depends on !BF531 718 717 help 719 - If enabled the CPLB Switch Tables are linked 720 - into L1 data memory.(less latency) 718 + If enabled, the CPLB Switch Tables are linked 719 + into L1 data memory. (less latency) 721 720 722 721 endmenu 723 722 ··· 1030 1029 from. 1031 1030 1032 1031 config DEBUG_ICACHE_CHECK 1033 - bool "Check Instruction cache coherancy" 1032 + bool "Check Instruction cache coherency" 1034 1033 depends on DEBUG_KERNEL 1035 1034 depends on DEBUG_HWERR 1036 1035 help 1037 - Say Y here if you are getting wierd unexplained errors. This will 1038 - ensure that icache is what SDRAM says it should be, by doing a 1039 - byte wise comparision between SDRAM and instruction cache. This 1036 + Say Y here if you are getting weird unexplained errors. This will 1037 + ensure that icache is what SDRAM says it should be by doing a 1038 + byte wise comparison between SDRAM and instruction cache. This 1040 1039 also relocates the irq_panic() function to L1 memory, (which is 1041 1040 un-cached). 1042 1041
+1 -1
arch/cris/arch-v10/Kconfig
··· 182 182 set this to same as CONFIG_ETRAX_LED1G (normally 2). 183 183 184 184 config ETRAX_LED8Y 185 - int "Eigth yellow LED bit" 185 + int "Eighth yellow LED bit" 186 186 depends on ETRAX_CSP0_LEDS 187 187 default "2" 188 188 help
+4 -4
arch/ia64/Kconfig
··· 452 452 config IA64_MC_ERR_INJECT 453 453 tristate "MC error injection support" 454 454 help 455 - Selets whether support for MC error injection. By enabling the 456 - support, kernel provide sysfs interface for user application to 457 - call MC error injection PAL procedure to inject various errors. 455 + Adds support for MC error injection. If enabled, the kernel 456 + will provide a sysfs interface for user applications to 457 + call MC error injection PAL procedures to inject various errors. 458 458 This is a useful tool for MCA testing. 459 459 460 460 If you're unsure, do not select this option. ··· 491 491 but it is independent of the system firmware. And like a reboot 492 492 you can start any kernel with it, not just Linux. 493 493 494 - The name comes from the similiarity to the exec system call. 494 + The name comes from the similarity to the exec system call. 495 495 496 496 It is an ongoing process to be certain the hardware in a machine 497 497 is properly shutdown, so do not be surprised if this code does not
+1 -1
arch/mips/Kconfig
··· 1812 1812 but it is independent of the system firmware. And like a reboot 1813 1813 you can start any kernel with it, not just Linux. 1814 1814 1815 - The name comes from the similiarity to the exec system call. 1815 + The name comes from the similarity to the exec system call. 1816 1816 1817 1817 It is an ongoing process to be certain the hardware in a machine 1818 1818 is properly shutdown, so do not be surprised if this code does not
+1 -1
arch/powerpc/platforms/Kconfig
··· 120 120 depends on PPC_IBM_CELL_BLADE 121 121 help 122 122 PMI (Platform Management Interrupt) is a way to 123 - communicate with the BMC (Baseboard Mangement Controller). 123 + communicate with the BMC (Baseboard Management Controller). 124 124 It is used in some IBM Cell blades. 125 125 default m 126 126
+1 -1
arch/um/Kconfig
··· 3 3 option defconfig_list 4 4 default "arch/$ARCH/defconfig" 5 5 6 - # UML uses the generic IRQ sugsystem 6 + # UML uses the generic IRQ subsystem 7 7 config GENERIC_HARDIRQS 8 8 bool 9 9 default y
+5 -5
drivers/i2c/busses/Kconfig
··· 278 278 depends on ARCH_IXP2000 279 279 select I2C_ALGOBIT 280 280 help 281 - Say Y here if you have an Intel IXP2000(2400, 2800, 2850) based 281 + Say Y here if you have an Intel IXP2000 (2400, 2800, 2850) based 282 282 system and are using GPIO lines for an I2C bus. 283 283 284 284 This support is also available as a module. If so, the module ··· 293 293 default y 294 294 help 295 295 This exposes the various PowerMac i2c interfaces to the linux i2c 296 - layer and to userland. It is used by various drivers on the powemac 297 - platform, thus should generally be enabled. 296 + layer and to userland. It is used by various drivers on the PowerMac 297 + platform, and should generally be enabled. 298 298 299 299 This support is also available as a module. If so, the module 300 300 will be called i2c-powermac. ··· 438 438 tristate "Simtec Generic I2C interface" 439 439 select I2C_ALGOBIT 440 440 help 441 - If you say yes to this option, support will be inclyded for 441 + If you say yes to this option, support will be included for 442 442 the Simtec Generic I2C interface. This driver is for the 443 443 simple I2C bus used on newer Simtec products for general 444 444 I2C, such as DDC on the Simtec BBD2016A. 445 445 446 - This driver can also be build as a module. If so, the module 446 + This driver can also be built as a module. If so, the module 447 447 will be called i2c-simtec. 448 448 449 449 config SCx200_I2C
+2 -2
drivers/input/misc/Kconfig
··· 70 70 select LEDS_CLASS 71 71 select CHECK_SIGNATURE 72 72 help 73 - Say Y here for support of Winstron laptop button interface, used on 73 + Say Y here for support of Wistron laptop button interfaces, used on 74 74 laptops of various brands, including Acer and Fujitsu-Siemens. If 75 - available, mail and wifi leds will be controlable via /sys/class/leds. 75 + available, mail and wifi LEDs will be controllable via /sys/class/leds. 76 76 77 77 To compile this driver as a module, choose M here: the module will 78 78 be called wistron_btns.
+2 -2
drivers/mfd/Kconfig
··· 10 10 ---help--- 11 11 This is the core driver for the Silicon Motion SM501 multimedia 12 12 companion chip. This device is a multifunction device which may 13 - provide numerous interfaces including USB host controller USB gadget, 14 - Asyncronous Serial ports, Audio functions and a dual display video 13 + provide numerous interfaces including USB host controller, USB gadget, 14 + asynchronous serial ports, audio functions, and a dual display video 15 15 interface. The device may be connected by PCI or local bus with 16 16 varying functions enabled. 17 17
+2 -2
drivers/misc/Kconfig
··· 180 180 For more information about this driver see 181 181 <file:Documentation/thinkpad-acpi.txt> and <http://ibm-acpi.sf.net/> . 182 182 183 - This driver was formely known as ibm-acpi. 183 + This driver was formerly known as ibm-acpi. 184 184 185 185 If you have an IBM or Lenovo ThinkPad laptop, say Y or M here. 186 186 ··· 214 214 default y 215 215 ---help--- 216 216 Allows the thinkpad_acpi driver to handle removable bays. It will 217 - eletrically disable the device in the bay, and also generate 217 + electrically disable the device in the bay, and also generate 218 218 notifications when the bay lever is ejected or inserted. 219 219 220 220 If you are not sure, say Y here.
+5 -5
drivers/mtd/maps/Kconfig
··· 54 54 help 55 55 This is the total width of the data bus of the flash devices 56 56 in octets. For example, if you have a data bus width of 32 57 - bits, you would set the bus width octect value to 4. This is 57 + bits, you would set the bus width octet value to 4. This is 58 58 used internally by the CFI drivers. 59 59 Ignore this option if you use run-time physmap configuration 60 60 (i.e., run-time calling physmap_configure()). ··· 73 73 depends on PMC_MSP && MTD_CFI 74 74 select MTD_PARTITIONS 75 75 help 76 - This provides a 'mapping' driver which support the way 77 - in which user-programmable flash chips are connected on the 78 - PMC-Sierra MSP eval/demo boards 76 + This provides a 'mapping' driver which supports the way 77 + in which user-programmable flash chips are connected on the 78 + PMC-Sierra MSP eval/demo boards. 79 79 80 80 choice 81 - prompt "Maximum mappable memory avialable for flash IO" 81 + prompt "Maximum mappable memory available for flash IO" 82 82 depends on MTD_PMC_MSP_EVM 83 83 default MSP_FLASH_MAP_LIMIT_32M 84 84
+1 -1
drivers/net/Kconfig
··· 855 855 depends on BFIN_MAC && BF537 856 856 default y 857 857 help 858 - To get maximum network performace, you should use L1 memory as rx/tx buffers. 858 + To get maximum network performance, you should use L1 memory as rx/tx buffers. 859 859 Say N here if you want to reserve L1 memory for other uses. 860 860 861 861 config BFIN_TX_DESC_NUM
+1 -1
drivers/rtc/Kconfig
··· 240 240 depends on MENELAUS 241 241 help 242 242 If you say yes here you get support for the RTC on the 243 - TWL92330 "Menelaus" power mangement chip, used with OMAP2 243 + TWL92330 "Menelaus" power management chip, used with OMAP2 244 244 platforms. The support is integrated with the rest of 245 245 the Menelaus driver; it's not separate module. 246 246
+3 -3
drivers/serial/Kconfig
··· 62 62 kernel will automatically use the first serial line, /dev/ttyS0, as 63 63 system console. 64 64 65 - you can set that using a kernel command line option such as 65 + You can set that using a kernel command line option such as 66 66 "console=uart8250,io,0x3f8,9600n8" 67 67 "console=uart8250,mmio,0xff5e0000,115200n8". 68 - and it will switch to normal serial console when correponding port is 69 - ready. 68 + and it will switch to normal serial console when the corresponding 69 + port is ready. 70 70 "earlycon=uart8250,io,0x3f8,9600n8" 71 71 "earlycon=uart8250,mmio,0xff5e0000,115200n8". 72 72 it will not only setup early console.
+1 -1
drivers/usb/image/Kconfig
··· 1 1 # 2 - # USB Imageing devices configuration 2 + # USB Imaging devices configuration 3 3 # 4 4 comment "USB Imaging devices" 5 5 depends on USB
+1 -1
drivers/usb/serial/Kconfig
··· 527 527 depends on USB_SERIAL && EXPERIMENTAL 528 528 ---help--- 529 529 Say Y here if you want to use a cyberJack pinpad/e-com USB chipcard 530 - reader. This is an interface to ISO 7816 compatible contactbased 530 + reader. This is an interface to ISO 7816 compatible contact-based 531 531 chipcards, e.g. GSM SIMs. 532 532 533 533 To compile this driver as a module, choose M here: the
+3 -3
drivers/video/Kconfig
··· 661 661 help 662 662 This enables support for the Hecuba board. This driver was tested 663 663 with an E-Ink 800x600 display and x86 SBCs through a 16 bit GPIO 664 - interface (8 bit data, 4 bit control). If you anticpate using 664 + interface (8 bit data, 4 bit control). If you anticipate using 665 665 this driver, say Y or M; otherwise say N. You must specify the 666 666 GPIO IO address to be used for setting control and data. 667 667 ··· 815 815 help 816 816 This is the framebuffer device for the Sun XVR-500 and similar 817 817 graphics cards based upon the 3DLABS Wildcat chipset. The driver 818 - only works on sparc64 systems where the system firwmare has 818 + only works on sparc64 systems where the system firmware has 819 819 mostly initialized the card already. It is treated as a 820 820 completely dumb framebuffer device. 821 821 ··· 828 828 help 829 829 This is the framebuffer device for the Sun XVR-2500 and similar 830 830 graphics cards based upon the 3DLABS Wildcat chipset. The driver 831 - only works on sparc64 systems where the system firwmare has 831 + only works on sparc64 systems where the system firmware has 832 832 mostly initialized the card already. It is treated as a 833 833 completely dumb framebuffer device. 834 834
+1 -1
drivers/video/console/Kconfig
··· 27 27 The scrollback buffer of the standard VGA console is located in 28 28 the VGA RAM. The size of this RAM is fixed and is quite small. 29 29 If you require a larger scrollback buffer, this can be placed in 30 - System RAM which is dynamically allocated during intialization. 30 + System RAM which is dynamically allocated during initialization. 31 31 Placing the scrollback buffer in System RAM will slightly slow 32 32 down the console. 33 33
+1 -1
drivers/video/omap/Kconfig
··· 8 8 Frame buffer driver for OMAP based boards. 9 9 10 10 config FB_OMAP_BOOTLOADER_INIT 11 - bool "Check bootloader initializaion" 11 + bool "Check bootloader initialization" 12 12 depends on FB_OMAP 13 13 help 14 14 Say Y here if you want to enable checking if the bootloader has
+1 -1
net/9p/Kconfig
··· 27 27 bool "Debug information" 28 28 depends on NET_9P 29 29 help 30 - Say Y if you want the 9P subsistem to log debug information. 30 + Say Y if you want the 9P subsystem to log debug information. 31 31
+1 -1
net/ipv4/Kconfig
··· 560 560 depends on EXPERIMENTAL 561 561 default n 562 562 ---help--- 563 - TCP-Illinois is a sender-side modificatio of TCP Reno for 563 + TCP-Illinois is a sender-side modification of TCP Reno for 564 564 high speed long delay links. It uses round-trip-time to 565 565 adjust the alpha and beta parameters to achieve a higher average 566 566 throughput and maintain fairness.