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

Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial

* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits)
Update broken web addresses in arch directory.
Update broken web addresses in the kernel.
Revert "drivers/usb: Remove unnecessary return's from void functions" for musb gadget
Revert "Fix typo: configuation => configuration" partially
ida: document IDA_BITMAP_LONGS calculation
ext2: fix a typo on comment in ext2/inode.c
drivers/scsi: Remove unnecessary casts of private_data
drivers/s390: Remove unnecessary casts of private_data
net/sunrpc/rpc_pipe.c: Remove unnecessary casts of private_data
drivers/infiniband: Remove unnecessary casts of private_data
drivers/gpu/drm: Remove unnecessary casts of private_data
kernel/pm_qos_params.c: Remove unnecessary casts of private_data
fs/ecryptfs: Remove unnecessary casts of private_data
fs/seq_file.c: Remove unnecessary casts of private_data
arm: uengine.c: remove C99 comments
arm: scoop.c: remove C99 comments
Fix typo configue => configure in comments
Fix typo: configuation => configuration
Fix typo interrest[ing|ed] => interest[ing|ed]
Fix various typos of valid in comments
...

Fix up trivial conflicts in:
drivers/char/ipmi/ipmi_si_intf.c
drivers/usb/gadget/rndis.c
net/irda/irnet/irnet_ppp.c

+359 -512
+2 -2
Documentation/arm/SA1100/FreeBird
··· 1 - Freebird-1.1 is produced by Legned(C) ,Inc. 1 + Freebird-1.1 is produced by Legend(C), Inc. 2 2 http://web.archive.org/web/*/http://www.legend.com.cn 3 - and software/linux mainatined by Coventive(C),Inc. 3 + and software/linux maintained by Coventive(C), Inc. 4 4 (http://www.coventive.com) 5 5 6 6 Based on the Nicolas's strongarm kernel tree.
+1 -1
Documentation/kernel-parameters.txt
··· 1724 1724 norandmaps Don't use address space randomization. Equivalent to 1725 1725 echo 0 > /proc/sys/kernel/randomize_va_space 1726 1726 1727 - noreplace-paravirt [X86-32,PV_OPS] Don't patch paravirt_ops 1727 + noreplace-paravirt [X86,IA-64,PV_OPS] Don't patch paravirt_ops 1728 1728 1729 1729 noreplace-smp [X86-32,SMP] Don't replace SMP instructions 1730 1730 with UP alternatives
+1 -1
Documentation/vm/numa_memory_policy.txt
··· 424 424 425 425 + set the shared policy for a shared memory segment via mbind(2) 426 426 427 - The numactl(8) tool is packages with the run-time version of the library 427 + The numactl(8) tool is packaged with the run-time version of the library 428 428 containing the memory policy system call wrappers. Some distributions 429 429 package the headers and compile-time libraries in a separate development 430 430 package.
+1 -1
MAINTAINERS
··· 3441 3441 3442 3442 KERNEL JANITORS 3443 3443 L: kernel-janitors@vger.kernel.org 3444 - W: http://janitor.kernelnewbies.org/ 3444 + W: http://kernelnewbies.org/KernelJanitors 3445 3445 S: Odd Fixes 3446 3446 3447 3447 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
+1 -1
arch/arm/Kconfig
··· 1222 1222 1223 1223 See also <file:Documentation/i386/IO-APIC.txt>, 1224 1224 <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at 1225 - <http://www.linuxdoc.org/docs.html#howto>. 1225 + <http://tldp.org/HOWTO/SMP-HOWTO.html>. 1226 1226 1227 1227 If you don't know what to do here, say N. 1228 1228
+1 -1
arch/arm/common/icst.c
··· 8 8 * published by the Free Software Foundation. 9 9 * 10 10 * Support functions for calculating clocks/divisors for the ICST307 11 - * clock generators. See http://www.icst.com/ for more information 11 + * clock generators. See http://www.idt.com/ for more information 12 12 * on these devices. 13 13 * 14 14 * This is an almost identical implementation to the ICST525 clock generator.
+6 -6
arch/arm/common/scoop.c
··· 44 44 { 45 45 struct scoop_dev *sdev = dev_get_drvdata(dev); 46 46 47 - iowrite16(0x0100, sdev->base + SCOOP_MCR); // 00 48 - iowrite16(0x0000, sdev->base + SCOOP_CDR); // 04 49 - iowrite16(0x0000, sdev->base + SCOOP_CCR); // 10 50 - iowrite16(0x0000, sdev->base + SCOOP_IMR); // 18 51 - iowrite16(0x00FF, sdev->base + SCOOP_IRM); // 14 52 - iowrite16(0x0000, sdev->base + SCOOP_ISR); // 1C 47 + iowrite16(0x0100, sdev->base + SCOOP_MCR); /* 00 */ 48 + iowrite16(0x0000, sdev->base + SCOOP_CDR); /* 04 */ 49 + iowrite16(0x0000, sdev->base + SCOOP_CCR); /* 10 */ 50 + iowrite16(0x0000, sdev->base + SCOOP_IMR); /* 18 */ 51 + iowrite16(0x00FF, sdev->base + SCOOP_IRM); /* 14 */ 52 + iowrite16(0x0000, sdev->base + SCOOP_ISR); /* 1C */ 53 53 iowrite16(0x0000, sdev->base + SCOOP_IRM); 54 54 } 55 55
+9 -9
arch/arm/common/uengine.c
··· 312 312 b1 = (gpr_a[i] >> 8) & 0xff; 313 313 b0 = gpr_a[i] & 0xff; 314 314 315 - // immed[@ai, (b1 << 8) | b0] 316 - // 11110000 0000VVVV VVVV11VV VVVVVV00 1IIIIIII 315 + /* immed[@ai, (b1 << 8) | b0] */ 316 + /* 11110000 0000VVVV VVVV11VV VVVVVV00 1IIIIIII */ 317 317 ucode[offset++] = 0xf0; 318 318 ucode[offset++] = (b1 >> 4); 319 319 ucode[offset++] = (b1 << 4) | 0x0c | (b0 >> 6); 320 320 ucode[offset++] = (b0 << 2); 321 321 ucode[offset++] = 0x80 | i; 322 322 323 - // immed_w1[@ai, (b3 << 8) | b2] 324 - // 11110100 0100VVVV VVVV11VV VVVVVV00 1IIIIIII 323 + /* immed_w1[@ai, (b3 << 8) | b2] */ 324 + /* 11110100 0100VVVV VVVV11VV VVVVVV00 1IIIIIII */ 325 325 ucode[offset++] = 0xf4; 326 326 ucode[offset++] = 0x40 | (b3 >> 4); 327 327 ucode[offset++] = (b3 << 4) | 0x0c | (b2 >> 6); ··· 340 340 b1 = (gpr_b[i] >> 8) & 0xff; 341 341 b0 = gpr_b[i] & 0xff; 342 342 343 - // immed[@bi, (b1 << 8) | b0] 344 - // 11110000 0000VVVV VVVV001I IIIIII11 VVVVVVVV 343 + /* immed[@bi, (b1 << 8) | b0] */ 344 + /* 11110000 0000VVVV VVVV001I IIIIII11 VVVVVVVV */ 345 345 ucode[offset++] = 0xf0; 346 346 ucode[offset++] = (b1 >> 4); 347 347 ucode[offset++] = (b1 << 4) | 0x02 | (i >> 6); 348 348 ucode[offset++] = (i << 2) | 0x03; 349 349 ucode[offset++] = b0; 350 350 351 - // immed_w1[@bi, (b3 << 8) | b2] 352 - // 11110100 0100VVVV VVVV001I IIIIII11 VVVVVVVV 351 + /* immed_w1[@bi, (b3 << 8) | b2] */ 352 + /* 11110100 0100VVVV VVVV001I IIIIII11 VVVVVVVV */ 353 353 ucode[offset++] = 0xf4; 354 354 ucode[offset++] = 0x40 | (b3 >> 4); 355 355 ucode[offset++] = (b3 << 4) | 0x02 | (i >> 6); ··· 357 357 ucode[offset++] = b2; 358 358 } 359 359 360 - // ctx_arb[kill] 360 + /* ctx_arb[kill] */ 361 361 ucode[offset++] = 0xe0; 362 362 ucode[offset++] = 0x00; 363 363 ucode[offset++] = 0x01;
+1 -1
arch/arm/include/asm/hardware/icst.h
··· 8 8 * published by the Free Software Foundation. 9 9 * 10 10 * Support functions for calculating clocks/divisors for the ICST 11 - * clock generators. See http://www.icst.com/ for more information 11 + * clock generators. See http://www.idt.com/ for more information 12 12 * on these devices. 13 13 */ 14 14 #ifndef ASMARM_HARDWARE_ICST_H
+3 -3
arch/arm/mach-at91/Kconfig
··· 109 109 bool "Ajeco 1ARM Single Board Computer" 110 110 help 111 111 Select this if you are using Ajeco's 1ARM Single Board Computer. 112 - <http://www.ajeco.fi/products.htm> 112 + <http://www.ajeco.fi/> 113 113 114 114 config ARCH_AT91RM9200DK 115 115 bool "Atmel AT91RM9200-DK Development board" ··· 141 141 bool "Conitec ARM&EVA" 142 142 help 143 143 Select this if you are using Conitec's AT91RM9200-MCU-Module. 144 - <http://www.conitec.net/english/linuxboard.htm> 144 + <http://www.conitec.net/english/linuxboard.php> 145 145 146 146 config MACH_ATEB9200 147 147 bool "Embest ATEB9200" ··· 153 153 bool "KwikByte KB920x" 154 154 help 155 155 Select this if you are using KwikByte's KB920x board. 156 - <http://kwikbyte.com/KB9202_description_new.htm> 156 + <http://www.kwikbyte.com/KB9202.html> 157 157 158 158 config MACH_PICOTUX2XX 159 159 bool "picotux 200"
+1 -1
arch/arm/mach-omap1/Kconfig
··· 128 128 help 129 129 Support for the Palm Tungsten|T PDA. To boot the kernel, you'll 130 130 need a PalmOS compatible bootloader (Garux); check out 131 - http://www.hackndev.com/palm/tt/ for more information. 131 + http://garux.sourceforge.net/ for more information. 132 132 Say Y here if you have this PDA model, say N otherwise. 133 133 134 134 config MACH_SX1
+1 -1
arch/arm/mach-omap2/hsmmc.h
··· 23 23 char *name; /* or NULL for default */ 24 24 struct device *dev; /* returned: pointer to mmc adapter */ 25 25 int ocr_mask; /* temporary HACK */ 26 - /* Remux (pad configuation) when powering on/off */ 26 + /* Remux (pad configuration) when powering on/off */ 27 27 void (*remux)(struct device *dev, int slot, int power_on); 28 28 /* init some special card */ 29 29 void (*init_card)(struct mmc_card *card);
+1 -1
arch/arm/mach-s3c2440/mach-at2440evb.c
··· 5 5 * and modifications by SBZ <sbz@spgui.org> and 6 6 * Weibing <http://weibing.blogbus.com> 7 7 * 8 - * For product information, visit http://www.arm9e.com/ 8 + * For product information, visit http://www.arm.com/ 9 9 * 10 10 * This program is free software; you can redistribute it and/or modify 11 11 * it under the terms of the GNU General Public License version 2 as
+3 -3
arch/arm/mach-sa1100/Kconfig
··· 90 90 # FIXME: select CPU_FREQ_SA11x0 91 91 help 92 92 Say Y here if you want to build a kernel for the HP Jornada 720 93 - handheld computer. See <http://www.hp.com/jornada/products/720> 94 - for details. 93 + handheld computer. See 94 + <http://h10025.www1.hp.com/ewfrf/wc/product?product=61677&cc=us&lc=en&dlc=en&product=61677#> 95 95 96 96 config SA1100_JORNADA720_SSP 97 97 bool "HP Jornada 720 Extended SSP driver" ··· 145 145 FLASH. The SL4 version got 64 MB RAM and 32 MB FLASH and a 146 146 PCMCIA-Slot. The version for the Germany Telecom (DTAG) is the same 147 147 like CL4 in additional it has a PCMCIA-Slot. For more information 148 - visit <http://www.my-siemens.com/> or <http://www.siemens.ch/>. 148 + visit <http://www.usa.siemens.com/> or <http://www.siemens.ch/>. 149 149 150 150 config SA1100_SSP 151 151 tristate "Generic PIO SSP"
+1 -1
arch/arm/mach-sa1100/cpu-sa1100.c
··· 13 13 * This software has been developed while working on the LART 14 14 * computing board (http://www.lartmaker.nl/), which is 15 15 * sponsored by the Mobile Multi-media Communications 16 - * (http://www.mmc.tudelft.nl/) and Ubiquitous Communications 16 + * (http://www.mobimedia.org/) and Ubiquitous Communications 17 17 * (http://www.ubicom.tudelft.nl/) projects. 18 18 * 19 19 * The authors can be reached at:
+2 -2
arch/arm/nwfpe/milieu.h
··· 12 12 of this code was written as part of a project to build a fixed-point vector 13 13 processor in collaboration with the University of California at Berkeley, 14 14 overseen by Profs. Nelson Morgan and John Wawrzynek. More information 15 - is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/ 16 - arithmetic/softfloat.html'. 15 + is available through the Web page 16 + http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt 17 17 18 18 THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort 19 19 has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
+2 -2
arch/arm/nwfpe/softfloat-macros
··· 12 12 of this code was written as part of a project to build a fixed-point vector 13 13 processor in collaboration with the University of California at Berkeley, 14 14 overseen by Profs. Nelson Morgan and John Wawrzynek. More information 15 - is available through the web page `http://HTTP.CS.Berkeley.EDU/~jhauser/ 16 - arithmetic/softfloat.html'. 15 + is available through the web page 16 + http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt 17 17 18 18 THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort 19 19 has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
+2 -2
arch/arm/nwfpe/softfloat-specialize
··· 12 12 of this code was written as part of a project to build a fixed-point vector 13 13 processor in collaboration with the University of California at Berkeley, 14 14 overseen by Profs. Nelson Morgan and John Wawrzynek. More information 15 - is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/ 16 - arithmetic/softfloat.html'. 15 + is available through the Web page 16 + http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt 17 17 18 18 THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort 19 19 has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
+2 -2
arch/arm/nwfpe/softfloat.c
··· 11 11 of this code was written as part of a project to build a fixed-point vector 12 12 processor in collaboration with the University of California at Berkeley, 13 13 overseen by Profs. Nelson Morgan and John Wawrzynek. More information 14 - is available through the web page `http://HTTP.CS.Berkeley.EDU/~jhauser/ 15 - arithmetic/softfloat.html'. 14 + is available through the web page 15 + http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt 16 16 17 17 THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort 18 18 has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
+2 -2
arch/arm/nwfpe/softfloat.h
··· 12 12 of this code was written as part of a project to build a fixed-point vector 13 13 processor in collaboration with the University of California at Berkeley, 14 14 overseen by Profs. Nelson Morgan and John Wawrzynek. More information 15 - is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/ 16 - arithmetic/softfloat.html'. 15 + is available through the Web page 16 + http://www.jhauser.us/arithmetic/SoftFloat-2b/SoftFloat-source.txt 17 17 18 18 THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE. Although reasonable effort 19 19 has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
+1 -1
arch/arm/plat-samsung/include/plat/adc.h
··· 1 1 /* arch/arm/plat-samsung/include/plat/adc.h 2 2 * 3 3 * Copyright (c) 2008 Simtec Electronics 4 - * http://armlinux.simnte.co.uk/ 4 + * http://armlinux.simtec.co.uk/ 5 5 * Ben Dooks <ben@simtec.co.uk> 6 6 * 7 7 * S3C ADC driver information
+1 -1
arch/avr32/Kconfig
··· 146 146 will cover even the most exceptional need of memory bandwidth. Together with the onboard 147 147 video decoder the board is ready for video processing. 148 148 149 - For more information see: http://www.miromico.com/hammerhead 149 + For more information see: http://www.miromico.ch/index.php/hammerhead.html 150 150 151 151 config BOARD_FAVR_32 152 152 bool "Favr-32 LCD-board"
+1 -1
arch/blackfin/mach-bf527/boards/ezkit.c
··· 887 887 }; 888 888 889 889 /* 890 - * ADP5520/5501 Multifuction Device Init Data 890 + * ADP5520/5501 Multifunction Device Init Data 891 891 */ 892 892 893 893 static struct adp5520_platform_data adp5520_pdev_data = {
+1 -1
arch/blackfin/mach-bf537/boards/stamp.c
··· 2015 2015 }; 2016 2016 2017 2017 /* 2018 - * ADP5520/5501 Multifuction Device Init Data 2018 + * ADP5520/5501 Multifunction Device Init Data 2019 2019 */ 2020 2020 2021 2021 static struct adp5520_platform_data adp5520_pdev_data = {
+4 -4
arch/h8300/Kconfig.cpu
··· 17 17 help 18 18 AKI-H8/3068F / AKI-H8/3069F Flashmicom LAN Board Support 19 19 More Information. (Japanese Only) 20 - <http://akizukidensi.com/catalog/h8.html> 20 + <http://akizukidenshi.com/catalog/default.aspx> 21 21 AE-3068/69 Evaluation Board Support 22 22 More Information. 23 23 <http://www.microtronique.com/ae3069lan.htm> ··· 36 36 help 37 37 GDB Simulator Support 38 38 More Information. 39 - arch/h8300/Doc/simulator.txt 39 + <http://sourceware.org/sid/> 40 40 41 41 config H8S_GENERIC 42 42 bool "H8S Generic" ··· 50 50 Renesas EDOSK-2674 Evaluation Board Support 51 51 More Information. 52 52 <http://www.azpower.com/H8-uClinux/index.html> 53 - <http://www.eu.renesas.com/tools/edk/support/edosk2674.html> 53 + <http://www.renesas.eu/products/tools/introductory_evaluation_tools/evaluation_development_os_kits/edosk2674r/edosk2674r_software_tools_root.jsp> 54 54 55 55 config H8S_SIM 56 56 bool "H8S Simulator" 57 57 help 58 58 GDB Simulator Support 59 59 More Information. 60 - arch/h8300/Doc/simulator.txt 60 + <http://sourceware.org/sid/> 61 61 62 62 endchoice 63 63
+1
arch/h8300/README
··· 18 18 19 19 4.EDOSK2674 20 20 see http://www.eu.renesas.com/products/mpumcu/tool/edk/support/edosk2674.html 21 + http://www.uclinux.org/pub/uClinux/ports/h8/HITACHI-EDOSK2674-HOWTO 21 22 http://www.azpower.com/H8-uClinux/ 22 23 23 24 * Toolchain Version
+1 -1
arch/m32r/Kconfig
··· 315 315 Management" code will be disabled if you say Y here. 316 316 317 317 See also the SMP-HOWTO available at 318 - <http://www.linuxdoc.org/docs.html#howto>. 318 + <http://tldp.org/HOWTO/SMP-HOWTO.html>. 319 319 320 320 If you don't know what to do here, say N. 321 321
+2 -1
arch/m68k/mac/macboing.c
··· 114 114 * 16-bit I/O functionality. The PowerBook 500 series computers 115 115 * support 16-bit stereo output, but only mono input." 116 116 * 117 - * http://til.info.apple.com/techinfo.nsf/artnum/n16405 117 + * Technical Information Library (TIL) article number 16405. 118 + * http://support.apple.com/kb/TA32601 118 119 * 119 120 * --David Kilzer 120 121 */
+1 -1
arch/m68k/q40/README
··· 3 3 4 4 You may try http://www.geocities.com/SiliconValley/Bay/2602/ for 5 5 some up to date information. Booter and other tools will be also 6 - available from this place or ftp.uni-erlangen.de/linux/680x0/q40/ 6 + available from this place or http://ftp.uni-erlangen.de/pub/unix/Linux/680x0/q40/ 7 7 and mirrors. 8 8 9 9 Hints to documentation usually refer to the linux source tree in
+8 -4
arch/mips/Kconfig
··· 2196 2196 bool "TURBOchannel support" 2197 2197 depends on MACH_DECSTATION 2198 2198 help 2199 - TurboChannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS 2200 - processors. Documentation on writing device drivers for TurboChannel 2201 - is available at: 2202 - <http://www.cs.arizona.edu/computer.help/policy/DIGITAL_unix/AA-PS3HD-TET1_html/TITLE.html>. 2199 + TURBOchannel is a DEC (now Compaq (now HP)) bus for Alpha and MIPS 2200 + processors. TURBOchannel programming specifications are available 2201 + at: 2202 + <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/> 2203 + and: 2204 + <http://www.computer-refuge.org/classiccmp/ftp.digital.com/pub/DEC/TriAdd/> 2205 + Linux driver support status is documented at: 2206 + <http://www.linux-mips.org/wiki/DECstation> 2203 2207 2204 2208 #config ACCESSBUS 2205 2209 # bool "Access.Bus support"
-1
arch/mips/math-emu/cp1emu.c
··· 3 3 * 4 4 * MIPS floating point support 5 5 * Copyright (C) 1994-2000 Algorithmics Ltd. 6 - * http://www.algor.co.uk 7 6 * 8 7 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com 9 8 * Copyright (C) 2000 MIPS Technologies, Inc.
-1
arch/mips/math-emu/dp_add.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_cmp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_div.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_fint.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_flong.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_frexp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_fsp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_logb.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_modf.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_mul.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_scalb.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_simple.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_sqrt.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_sub.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_tint.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/dp_tlong.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/ieee754.c
··· 9 9 /* 10 10 * MIPS floating point support 11 11 * Copyright (C) 1994-2000 Algorithmics Ltd. 12 - * http://www.algor.co.uk 13 12 * 14 13 * ######################################################################## 15 14 *
-1
arch/mips/math-emu/ieee754.h
··· 1 1 /* 2 2 * MIPS floating point support 3 3 * Copyright (C) 1994-2000 Algorithmics Ltd. 4 - * http://www.algor.co.uk 5 4 * 6 5 * This program is free software; you can distribute it and/or modify it 7 6 * under the terms of the GNU General Public License (Version 2) as
-1
arch/mips/math-emu/ieee754d.c
··· 4 4 * MIPS floating point support 5 5 * 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * This program is free software; you can distribute it and/or modify it 10 9 * under the terms of the GNU General Public License (Version 2) as
-1
arch/mips/math-emu/ieee754dp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/ieee754dp.h
··· 5 5 /* 6 6 * MIPS floating point support 7 7 * Copyright (C) 1994-2000 Algorithmics Ltd. 8 - * http://www.algor.co.uk 9 8 * 10 9 * ######################################################################## 11 10 *
-1
arch/mips/math-emu/ieee754int.h
··· 5 5 /* 6 6 * MIPS floating point support 7 7 * Copyright (C) 1994-2000 Algorithmics Ltd. 8 - * http://www.algor.co.uk 9 8 * 10 9 * ######################################################################## 11 10 *
-1
arch/mips/math-emu/ieee754m.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/ieee754sp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/ieee754sp.h
··· 5 5 /* 6 6 * MIPS floating point support 7 7 * Copyright (C) 1994-2000 Algorithmics Ltd. 8 - * http://www.algor.co.uk 9 8 * 10 9 * ######################################################################## 11 10 *
-1
arch/mips/math-emu/ieee754xcpt.c
··· 1 1 /* 2 2 * MIPS floating point support 3 3 * Copyright (C) 1994-2000 Algorithmics Ltd. 4 - * http://www.algor.co.uk 5 4 * 6 5 * ######################################################################## 7 6 *
-1
arch/mips/math-emu/sp_add.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_cmp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_div.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_fdp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_fint.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_flong.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_frexp.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_logb.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_modf.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_mul.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_scalb.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_simple.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_sqrt.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_sub.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_tint.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
-1
arch/mips/math-emu/sp_tlong.c
··· 4 4 /* 5 5 * MIPS floating point support 6 6 * Copyright (C) 1994-2000 Algorithmics Ltd. 7 - * http://www.algor.co.uk 8 7 * 9 8 * ######################################################################## 10 9 *
+1 -1
arch/mips/pci/fixup-fuloong2e.c
··· 52 52 { 53 53 unsigned int val; 54 54 55 - /* Configues port 1, 2, 3, 4 to be validate*/ 55 + /* Configures port 1, 2, 3, 4 to be validate*/ 56 56 pci_read_config_dword(pdev, 0xe0, &val); 57 57 pci_write_config_dword(pdev, 0xe0, (val & ~7) | 0x4); 58 58
+1 -1
arch/mips/sibyte/common/sb_tbprof.c
··· 43 43 #include <asm/sibyte/sb1250_scd.h> 44 44 #include <asm/sibyte/sb1250_int.h> 45 45 #else 46 - #error invalid SiByte UART configuation 46 + #error invalid SiByte UART configuration 47 47 #endif 48 48 49 49 #if defined(CONFIG_SIBYTE_BCM1x55) || defined(CONFIG_SIBYTE_BCM1x80)
+1 -1
arch/powerpc/include/asm/hydra.h
··· 10 10 * 11 11 * © Copyright 1995 Apple Computer, Inc. All rights reserved. 12 12 * 13 - * It's available online from http://chrp.apple.com/MacTech.pdf. 13 + * It's available online from http://www.cpu.lu/~mlan/ftp/MacTech.pdf 14 14 * You can obtain paper copies of this book from computer bookstores or by 15 15 * writing Morgan Kaufmann Publishers, Inc., 340 Pine Street, Sixth Floor, San 16 16 * Francisco, CA 94104. Reference ISBN 1-55860-393-X.
+2 -2
arch/x86/kernel/apm_32.c
··· 189 189 * Intel Order Number 241704-001. Microsoft Part Number 781-110-X01. 190 190 * 191 191 * [This document is available free from Intel by calling 800.628.8686 (fax 192 - * 916.356.6100) or 800.548.4725; or via anonymous ftp from 193 - * ftp://ftp.intel.com/pub/IAL/software_specs/apmv11.doc. It is also 192 + * 916.356.6100) or 800.548.4725; or from 193 + * http://www.microsoft.com/whdc/archive/amp_12.mspx It is also 194 194 * available from Microsoft by calling 206.882.8080.] 195 195 * 196 196 * APM 1.2 Reference:
+1 -1
arch/x86/kernel/microcode_core.c
··· 12 12 * Software Developer's Manual 13 13 * Order Number 253668 or free download from: 14 14 * 15 - * http://developer.intel.com/design/pentium4/manuals/253668.htm 15 + * http://developer.intel.com/Assets/PDF/manual/253668.pdf 16 16 * 17 17 * For more information, go to http://www.urbanmyth.org/microcode 18 18 *
+1 -1
arch/x86/kernel/microcode_intel.c
··· 12 12 * Software Developer's Manual 13 13 * Order Number 253668 or free download from: 14 14 * 15 - * http://developer.intel.com/design/pentium4/manuals/253668.htm 15 + * http://developer.intel.com/Assets/PDF/manual/253668.pdf 16 16 * 17 17 * For more information, go to http://www.urbanmyth.org/microcode 18 18 *
+1 -1
arch/xtensa/include/asm/uaccess.h
··· 4 4 * User space memory access functions 5 5 * 6 6 * These routines provide basic accessing functions to the user memory 7 - * space for the kernel. This header file provides fuctions such as: 7 + * space for the kernel. This header file provides functions such as: 8 8 * 9 9 * This file is subject to the terms and conditions of the GNU General Public 10 10 * License. See the file "COPYING" in the main directory of this archive
+1 -1
block/blk-core.c
··· 1669 1669 * the insertion using this generic function. 1670 1670 * 1671 1671 * This function should also be useful for request stacking drivers 1672 - * in some cases below, so export this fuction. 1672 + * in some cases below, so export this function. 1673 1673 * Request stacking drivers like request-based dm may change the queue 1674 1674 * limits while requests are in the queue (e.g. dm's table swapping). 1675 1675 * Such request stacking drivers should check those requests agaist
+1 -1
drivers/ata/pata_bf54x.c
··· 1588 1588 host->ports[0]->ioaddr.ctl_addr = (void *)res->start; 1589 1589 1590 1590 if (peripheral_request_list(atapi_io_port, "atapi-io-port")) { 1591 - dev_err(&pdev->dev, "Requesting Peripherals faild\n"); 1591 + dev_err(&pdev->dev, "Requesting Peripherals failed\n"); 1592 1592 return -EFAULT; 1593 1593 } 1594 1594
+2 -2
drivers/ata/pata_it821x.c
··· 15 15 * May be copied or modified under the terms of the GNU General Public License 16 16 * Based in part on the ITE vendor provided SCSI driver. 17 17 * 18 - * Documentation available from 19 - * http://www.ite.com.tw/pc/IT8212F_V04.pdf 18 + * Documentation available from IT8212F_V04.pdf 19 + * http://www.ite.com.tw/EN/products_more.aspx?CategoryID=3&ID=5,91 20 20 * Some other documents are NDA. 21 21 * 22 22 * The ITE8212 isn't exactly a standard IDE controller. It has two
+1 -1
drivers/atm/Kconfig
··· 301 301 control memory (128K-1KVC, 512K-4KVC), the size of the packet 302 302 memory (128K, 512K, 1M), and the PHY type (Single/Multi mode OC3, 303 303 UTP155, UTP25, DS3 and E3). Go to: 304 - <http://www.iphase.com/products/ClassSheet.cfm?ClassID=ATM> 304 + <http://www.iphase.com/> 305 305 for more info about the cards. Say Y (or M to compile as a module 306 306 named iphase) here if you have one of these cards. 307 307
+1 -1
drivers/base/core.c
··· 233 233 __func__, retval); 234 234 } 235 235 236 - /* have the device type specific fuction add its stuff */ 236 + /* have the device type specific function add its stuff */ 237 237 if (dev->type && dev->type->uevent) { 238 238 retval = dev->type->uevent(dev, env); 239 239 if (retval)
+1 -1
drivers/char/agp/Kconfig
··· 34 34 X on the following ALi chipsets. The supported chipsets 35 35 include M1541, M1621, M1631, M1632, M1641,M1647,and M1651. 36 36 For the ALi-chipset question, ALi suggests you refer to 37 - <http://www.ali.com.tw/eng/support/index.shtml>. 37 + <http://www.ali.com.tw/>. 38 38 39 39 The M1541 chipset can do AGP 1x and 2x, but note that there is an 40 40 acknowledged incompatibility with Matrox G200 cards. Due to
+1 -1
drivers/char/agp/i460-agp.c
··· 1 1 /* 2 2 * For documentation on the i460 AGP interface, see Chapter 7 (AGP Subsystem) of 3 3 * the "Intel 460GTX Chipset Software Developer's Manual": 4 - * http://developer.intel.com/design/itanium/downloads/24870401s.htm 4 + * http://www.intel.com/design/archives/itanium/downloads/248704.htm 5 5 */ 6 6 /* 7 7 * 460GX support by Chris Ahna <christopher.j.ahna@intel.com>
+2 -2
drivers/char/apm-emulation.c
··· 7 7 * Intel Corporation, Microsoft Corporation. Advanced Power Management 8 8 * (APM) BIOS Interface Specification, Revision 1.2, February 1996. 9 9 * 10 - * [This document is available from Microsoft at: 11 - * http://www.microsoft.com/hwdev/busbios/amp_12.htm] 10 + * This document is available from Microsoft at: 11 + * http://www.microsoft.com/whdc/archive/amp_12.mspx 12 12 */ 13 13 #include <linux/module.h> 14 14 #include <linux/poll.h>
+1 -1
drivers/char/ipmi/ipmi_bt_sm.c
··· 2 2 * ipmi_bt_sm.c 3 3 * 4 4 * The state machine for an Open IPMI BT sub-driver under ipmi_si.c, part 5 - * of the driver architecture at http://sourceforge.net/project/openipmi 5 + * of the driver architecture at http://sourceforge.net/projects/openipmi 6 6 * 7 7 * Author: Rocky Craig <first.last@hp.com> 8 8 *
+1 -2
drivers/char/ipmi/ipmi_si_intf.c
··· 1974 1974 1975 1975 /* 1976 1976 * Defined at 1977 - * http://h21007.www2.hp.com/portal/download/files 1978 - * /unprot/hpspmi.pdf 1977 + * http://h21007.www2.hp.com/portal/download/files/unprot/hpspmi.pdf 1979 1978 */ 1980 1979 struct SPMITable { 1981 1980 s8 Signature[4];
-1
drivers/char/n_r3964.c
··· 4 4 * Copyright by 5 5 * Philips Automation Projects 6 6 * Kassel (Germany) 7 - * http://www.pap-philips.de 8 7 * ----------------------------------------------------------- 9 8 * This software may be used and distributed according to the terms of 10 9 * the GNU General Public License, incorporated herein by reference.
+2 -2
drivers/char/pcmcia/Kconfig
··· 28 28 29 29 This kernel driver requires additional userspace support, either 30 30 by the vendor-provided PC/SC ifd_handler (http://www.omnikey.com/), 31 - or via the cm4000 backend of OpenCT (http://www.opensc.com/). 31 + or via the cm4000 backend of OpenCT (http://www.opensc-project.org/opensc). 32 32 33 33 config CARDMAN_4040 34 34 tristate "Omnikey CardMan 4040 support" ··· 41 41 in I/O space. To use the kernel driver, you will need either the 42 42 PC/SC ifdhandler provided from the Omnikey homepage 43 43 (http://www.omnikey.com/), or a current development version of OpenCT 44 - (http://www.opensc.org/). 44 + (http://www.opensc-project.org/opensc). 45 45 46 46 config IPWIRELESS 47 47 tristate "IPWireless 3G UMTS PCMCIA card support"
+1 -1
drivers/char/pcmcia/cm4000_cs.c
··· 1666 1666 /* opening will always block since the 1667 1667 * monitor will be started by open, which 1668 1668 * means we have to wait for ATR becoming 1669 - * vaild = block until valid (or card 1669 + * valid = block until valid (or card 1670 1670 * inserted) 1671 1671 */ 1672 1672 if (filp->f_flags & O_NONBLOCK) {
+2 -2
drivers/char/stallion.c
··· 3181 3181 3182 3182 /* 3183 3183 * Return the current state of data flow on this port. This is only 3184 - * really interresting when determining if data has fully completed 3184 + * really interesting when determining if data has fully completed 3185 3185 * transmission or not... This is easy for the cd1400, it accurately 3186 3186 * maintains the busy port flag. 3187 3187 */ ··· 4131 4131 4132 4132 /* 4133 4133 * Return the current state of data flow on this port. This is only 4134 - * really interresting when determining if data has fully completed 4134 + * really interesting when determining if data has fully completed 4135 4135 * transmission or not... The sc26198 interrupt scheme cannot 4136 4136 * determine when all data has actually drained, so we need to 4137 4137 * check the port statusy register to be sure.
+1 -1
drivers/char/tpm/Kconfig
··· 58 58 To compile this driver as a module, choose M here; the module 59 59 will be called tpm_infineon. 60 60 Further information on this driver and the supported hardware 61 - can be found at http://www.prosec.rub.de/tpm 61 + can be found at http://www.trust.rub.de/projects/linux-device-driver-infineon-tpm/ 62 62 63 63 endif # TCG_TPM
+1 -1
drivers/char/tpm/tpm_infineon.c
··· 7 7 * Copyright (C) 2005, Marcel Selhorst <m.selhorst@sirrix.com> 8 8 * Sirrix AG - security technologies, http://www.sirrix.com and 9 9 * Applied Data Security Group, Ruhr-University Bochum, Germany 10 - * Project-Homepage: http://www.prosec.rub.de/tpm 10 + * Project-Homepage: http://www.trust.rub.de/projects/linux-device-driver-infineon-tpm/ 11 11 * 12 12 * This program is free software; you can redistribute it and/or 13 13 * modify it under the terms of the GNU General Public License as
+1 -1
drivers/edac/edac_device_sysfs.c
··· 1 1 /* 2 2 * file for managing the edac_device class of devices for EDAC 3 3 * 4 - * (C) 2007 SoftwareBitMaker (http://www.softwarebitmaker.com) 4 + * (C) 2007 SoftwareBitMaker 5 5 * 6 6 * This file may be distributed under the terms of the 7 7 * GNU General Public License.
+1 -1
drivers/edac/i82443bxgx_edac.c
··· 12 12 * 440GX fix by Jason Uhlenkott <juhlenko@akamai.com>. 13 13 * 14 14 * Written with reference to 82443BX Host Bridge Datasheet: 15 - * http://www.intel.com/design/chipsets/440/documentation.htm 15 + * http://download.intel.com/design/chipsets/datashts/29063301.pdf 16 16 * references to this document given in []. 17 17 * 18 18 * This module doesn't support the 440LX, but it may be possible to
+2 -1
drivers/firmware/Kconfig
··· 74 74 75 75 You must also enable the appropriate drivers (serial, VGA, etc.) 76 76 77 - See <http://www.dig64.org/specifications/DIG64_HCDPv20_042804.pdf> 77 + See DIG64_HCDPv20_042804.pdf available from 78 + <http://www.dig64.org/specifications/> 78 79 79 80 config DELL_RBU 80 81 tristate "BIOS update support for DELL systems via sysfs"
+1 -1
drivers/firmware/edd.c
··· 15 15 * made in setup.S, copied to safe structures in setup.c, 16 16 * and presents it in sysfs. 17 17 * 18 - * Please see http://linux.dell.com/edd30/results.html for 18 + * Please see http://linux.dell.com/edd/results.html for 19 19 * the list of BIOSs which have been reported to implement EDD. 20 20 * 21 21 * This program is free software; you can redistribute it and/or modify
+2 -2
drivers/firmware/pcdp.h
··· 1 1 /* 2 2 * Definitions for PCDP-defined console devices 3 3 * 4 - * v1.0a: http://www.dig64.org/specifications/DIG64_HCDPv10a_01.pdf 5 - * v2.0: http://www.dig64.org/specifications/DIG64_PCDPv20.pdf 4 + * For DIG64_HCDPv10a_01.pdf and DIG64_PCDPv20.pdf (v1.0a and v2.0 resp.), 5 + * please see <http://www.dig64.org/specifications/> 6 6 * 7 7 * (c) Copyright 2002, 2004 Hewlett-Packard Development Company, L.P. 8 8 * Khalid Aziz <khalid.aziz@hp.com>
+1 -1
drivers/gpu/drm/drm_modes.c
··· 76 76 * according to the hdisplay, vdisplay, vrefresh. 77 77 * It is based from the VESA(TM) Coordinated Video Timing Generator by 78 78 * Graham Loveridge April 9, 2003 available at 79 - * http://www.vesa.org/public/CVT/CVTd6r1.xls 79 + * http://www.elo.utfsm.cl/~elo212/docs/CVTd6r1.xls 80 80 * 81 81 * And it is copied from xf86CVTmode in xserver/hw/xfree86/modes/xf86cvt.c. 82 82 * What I have done is to translate it by using integer calculation.
+1 -1
drivers/gpu/drm/radeon/radeon_cs.c
··· 268 268 } 269 269 r = radeon_ib_schedule(rdev, parser.ib); 270 270 if (r) { 271 - DRM_ERROR("Faild to schedule IB !\n"); 271 + DRM_ERROR("Failed to schedule IB !\n"); 272 272 } 273 273 radeon_cs_parser_fini(&parser, r); 274 274 mutex_unlock(&rdev->cs_mutex);
+1 -1
drivers/gpu/drm/radeon/radeon_ttm.c
··· 631 631 return drm_mmap(filp, vma); 632 632 } 633 633 634 - file_priv = (struct drm_file *)filp->private_data; 634 + file_priv = filp->private_data; 635 635 rdev = file_priv->minor->dev->dev_private; 636 636 if (rdev == NULL) { 637 637 return -EINVAL;
+1 -1
drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c
··· 545 545 struct drm_file *file_priv; 546 546 struct vmw_private *dev_priv; 547 547 548 - file_priv = (struct drm_file *)filp->private_data; 548 + file_priv = filp->private_data; 549 549 dev_priv = vmw_priv(file_priv->minor->dev); 550 550 551 551 if (vma->vm_pgoff != (dev_priv->mmio_start >> PAGE_SHIFT) ||
+1 -1
drivers/gpu/drm/vmwgfx/vmwgfx_ttm_glue.c
··· 39 39 return drm_mmap(filp, vma); 40 40 } 41 41 42 - file_priv = (struct drm_file *)filp->private_data; 42 + file_priv = filp->private_data; 43 43 dev_priv = vmw_priv(file_priv->minor->dev); 44 44 return ttm_bo_mmap(filp, vma, &dev_priv->bdev); 45 45 }
+1 -1
drivers/hwmon/adm1025.c
··· 12 12 * resolution of about 0.5% of the nominal value). Temperature values are 13 13 * reported with a 1 deg resolution and a 3 deg accuracy. Complete 14 14 * datasheet can be obtained from Analog's website at: 15 - * http://www.analog.com/Analog_Root/productPage/productHome/0,2121,ADM1025,00.html 15 + * http://www.onsemi.com/PowerSolutions/product.do?id=ADM1025 16 16 * 17 17 * This driver also supports the ADM1025A, which differs from the ADM1025 18 18 * only in that it has "open-drain VID inputs while the ADM1025 has
+1 -1
drivers/hwmon/adm1026.c
··· 6 6 7 7 Chip details at: 8 8 9 - <http://www.analog.com/UploadedFiles/Data_Sheets/779263102ADM1026_a.pdf> 9 + <http://www.onsemi.com/PowerSolutions/product.do?id=ADM1026> 10 10 11 11 This program is free software; you can redistribute it and/or modify 12 12 it under the terms of the GNU General Public License as published by
+2 -2
drivers/hwmon/f75375s.c
··· 6 6 * Datasheets available at: 7 7 * 8 8 * f75375: 9 - * http://www.fintek.com.tw/files/productfiles/2005111152950.pdf 9 + * http://www.fintek.com.tw/files/productfiles/F75375_V026P.pdf 10 10 * 11 11 * f75373: 12 - * http://www.fintek.com.tw/files/productfiles/2005111153128.pdf 12 + * http://www.fintek.com.tw/files/productfiles/F75373_V025P.pdf 13 13 * 14 14 * This program is free software; you can redistribute it and/or modify 15 15 * it under the terms of the GNU General Public License as published by
+1 -1
drivers/hwmon/g760a.c
··· 5 5 Copyright (C) 2007 Herbert Valerio Riedel <hvr@gnu.org> 6 6 7 7 Complete datasheet is available at GMT's website: 8 - http://www.gmt.com.tw/datasheet/g760a.pdf 8 + http://www.gmt.com.tw/product/datasheet/EDS-760A.pdf 9 9 10 10 This program is free software; you can redistribute it and/or modify 11 11 it under the terms of the GNU General Public License as published by
+1 -1
drivers/hwmon/hwmon-vid.c
··· 38 38 * available at http://developer.intel.com/. 39 39 * 40 40 * AMD Athlon 64 and AMD Opteron Processors, AMD Publication 26094, 41 - * http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/26094.PDF 41 + * http://support.amd.com/us/Processor_TechDocs/26094.PDF 42 42 * Table 74. VID Code Voltages 43 43 * This corresponds to an arbitrary VRM code of 24 in the functions below. 44 44 * These CPU models (K8 revision <= E) have 5 VID pins. See also:
+1 -1
drivers/ide/hpt366.c
··· 12 12 * 13 13 * 14 14 * HighPoint has its own drivers (open source except for the RAID part) 15 - * available from http://www.highpoint-tech.com/BIOS%20+%20Driver/. 15 + * available from http://www.highpoint-tech.com/USA_new/service_support.htm 16 16 * This may be useful to anyone wanting to work on this driver, however do not 17 17 * trust them too much since the code tends to become less and less meaningful 18 18 * as the time passes... :-/
-1
drivers/ide/ht6560b.c
··· 10 10 * Author: Mikko Ala-Fossi <maf@iki.fi> 11 11 * Jan Evert van Grootheest <j.e.van.grootheest@caiway.nl> 12 12 * 13 - * Try: http://www.maf.iki.fi/~maf/ht6560b/ 14 13 */ 15 14 16 15 #define DRV_NAME "ht6560b"
+1 -2
drivers/ide/ide-disk.c
··· 435 435 if (!(rq->cmd_flags & REQ_FLUSH)) 436 436 return BLKPREP_OK; 437 437 438 - cmd = kmalloc(sizeof(*cmd), GFP_ATOMIC); 438 + cmd = kzalloc(sizeof(*cmd), GFP_ATOMIC); 439 439 440 440 /* FIXME: map struct ide_taskfile on rq->cmd[] */ 441 441 BUG_ON(cmd == NULL); 442 442 443 - memset(cmd, 0, sizeof(*cmd)); 444 443 if (ata_id_flush_ext_enabled(drive->id) && 445 444 (drive->capacity64 >= (1UL << 28))) 446 445 cmd->tf.command = ATA_CMD_FLUSH_EXT;
+2 -2
drivers/infiniband/Kconfig
··· 16 16 Userspace InfiniBand Management Datagram (MAD) support. This 17 17 is the kernel side of the userspace MAD support, which allows 18 18 userspace processes to send and receive MADs. You will also 19 - need libibumad from <http://www.openib.org>. 19 + need libibumad from <http://www.openfabrics.org/downloads/management/>. 20 20 21 21 config INFINIBAND_USER_ACCESS 22 22 tristate "InfiniBand userspace access (verbs and CM)" ··· 28 28 to set up connections and directly access InfiniBand 29 29 hardware for fast-path operations. You will also need 30 30 libibverbs, libibcm and a hardware driver library from 31 - <http://www.openib.org>. 31 + <http://www.openfabrics.org/git/>. 32 32 33 33 config INFINIBAND_USER_MEM 34 34 bool
+1 -1
drivers/infiniband/hw/cxgb3/Kconfig
··· 10 10 our website at <http://www.chelsio.com>. 11 11 12 12 For customer support, please visit our customer support page at 13 - <http://www.chelsio.com/support.htm>. 13 + <http://www.chelsio.com/support.html>. 14 14 15 15 Please send feedback to <linux-bugs@chelsio.com>. 16 16
+1 -1
drivers/infiniband/hw/cxgb4/Kconfig
··· 10 10 our website at <http://www.chelsio.com>. 11 11 12 12 For customer support, please visit our customer support page at 13 - <http://www.chelsio.com/support.htm>. 13 + <http://www.chelsio.com/support.html>. 14 14 15 15 Please send feedback to <linux-bugs@chelsio.com>. 16 16
+2 -2
drivers/infiniband/hw/qib/qib_file_ops.c
··· 1723 1723 1724 1724 mutex_lock(&qib_mutex); 1725 1725 1726 - fd = (struct qib_filedata *) fp->private_data; 1726 + fd = fp->private_data; 1727 1727 fp->private_data = NULL; 1728 1728 rcd = fd->rcd; 1729 1729 if (!rcd) { ··· 1809 1809 struct qib_ctxtdata *rcd = ctxt_fp(fp); 1810 1810 struct qib_filedata *fd; 1811 1811 1812 - fd = (struct qib_filedata *) fp->private_data; 1812 + fd = fp->private_data; 1813 1813 1814 1814 info.num_active = qib_count_active_units(); 1815 1815 info.unit = rcd->dd->unit;
+1 -1
drivers/infiniband/ulp/iser/Kconfig
··· 9 9 10 10 The iSER protocol is defined by IETF. 11 11 See <http://www.ietf.org/rfc/rfc5046.txt> 12 - and <http://www.infinibandta.org/members/spec/Annex_iSER.PDF> 12 + and <http://members.infinibandta.org/kwspub/spec/Annex_iSER.PDF>
+1 -2
drivers/input/joystick/gamecon.c
··· 521 521 * PSX support 522 522 * 523 523 * See documentation at: 524 - * http://www.dim.com/~mackys/psxmemcard/ps-eng2.txt 524 + * http://www.geocities.co.jp/Playtown/2004/psx/ps_eng.txt 525 525 * http://www.gamesx.com/controldata/psxcont/psxcont.htm 526 - * ftp://milano.usal.es/pablo/ 527 526 * 528 527 */ 529 528
+1 -1
drivers/input/misc/cm109.c
··· 259 259 260 260 /* 261 261 * Keymap for ATCom AU-100 262 - * http://www.atcom.cn/En_products_AU100.html 262 + * http://www.atcom.cn/products.html 263 263 * http://www.packetizer.com/products/au100/ 264 264 * http://www.voip-info.org/wiki/view/AU-100 265 265 *
+1
drivers/input/mouse/Kconfig
··· 30 30 <http://w1.894.telia.com/~u89404340/touchpad/index.html> 31 31 and a new version of GPM at: 32 32 <http://www.geocities.com/dt_or/gpm/gpm.html> 33 + <http://xorg.freedesktop.org/archive/individual/driver/> 33 34 to take advantage of the advanced features of the touchpad. 34 35 35 36 If unsure, say Y.
+2 -2
drivers/input/mouse/touchkit_ps2.c
··· 21 21 * 22 22 * Based upon touchkitusb.c 23 23 * 24 - * Vendor documentation is available in support section of: 25 - * http://www.egalax.com.tw/ 24 + * Vendor documentation is available at: 25 + * http://home.eeti.com.tw/web20/drivers/Software%20Programming%20Guide_v2.0.pdf 26 26 */ 27 27 28 28 #include <linux/kernel.h>
+1 -1
drivers/input/touchscreen/mk712.c
··· 17 17 * found in Gateway AOL Connected Touchpad computers. 18 18 * 19 19 * Documentation for ICS MK712 can be found at: 20 - * http://www.icst.com/pdf/mk712.pdf 20 + * http://www.idt.com/products/getDoc.cfm?docID=18713923 21 21 */ 22 22 23 23 /*
+1 -1
drivers/isdn/i4l/isdn_audio.c
··· 439 439 440 440 /* 441 441 * Goertzel algorithm. 442 - * See http://ptolemy.eecs.berkeley.edu/~pino/Ptolemy/papers/96/dtmf_ict/ 442 + * See http://ptolemy.eecs.berkeley.edu/papers/96/dtmf_ict/ 443 443 * for more info. 444 444 * Result is stored into an sk_buff and queued up for later 445 445 * evaluation.
+3 -3
drivers/macintosh/therm_adt746x.c
··· 3 3 * 4 4 * Copyright (C) 2003, 2004 Colin Leroy, Rasmus Rohde, Benjamin Herrenschmidt 5 5 * 6 - * Documentation from 7 - * http://www.analog.com/UploadedFiles/Data_Sheets/115254175ADT7467_pra.pdf 8 - * http://www.analog.com/UploadedFiles/Data_Sheets/3686221171167ADT7460_b.pdf 6 + * Documentation from 115254175ADT7467_pra.pdf and 3686221171167ADT7460_b.pdf 7 + * http://www.onsemi.com/PowerSolutions/product.do?id=ADT7467 8 + * http://www.onsemi.com/PowerSolutions/product.do?id=ADT7460 9 9 * 10 10 */ 11 11
-1
drivers/media/IR/keymaps/rc-manli.c
··· 13 13 #include <media/rc-map.h> 14 14 15 15 /* Michael Tokarev <mjt@tls.msk.ru> 16 - http://www.corpit.ru/mjt/beholdTV/remote_control.jpg 17 16 keytable is used by MANLI MTV00[0x0c] and BeholdTV 40[13] at 18 17 least, and probably other cards too. 19 18 The "ascii-art picture" below (in comments, first row
+2 -7
drivers/media/dvb/ttpci/av7110.c
··· 26 26 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 27 27 * 28 28 * 29 - * the project's page is at http://www.linuxtv.org/dvb/ 29 + * the project's page is at http://www.linuxtv.org/ 30 30 */ 31 31 32 32 ··· 2291 2291 /* Budgetpatch note: 2292 2292 * Original hardware design by Roberto Deza: 2293 2293 * There is a DVB_Wiki at 2294 - * http://212.227.36.83/linuxtv/wiki/index.php/Main_Page 2295 - * where is described this 'DVB TT Budget Patch', on Card Modding: 2296 - * http://212.227.36.83/linuxtv/wiki/index.php/DVB_TT_Budget_Patch 2297 - * On the short description there is also a link to a external file, 2298 - * with more details: 2299 - * http://perso.wanadoo.es/jesussolano/Ttf_tsc1.zip 2294 + * http://www.linuxtv.org/ 2300 2295 * 2301 2296 * New software triggering design by Emard that works on 2302 2297 * original Roberto Deza's hardware:
+1 -1
drivers/media/dvb/ttpci/av7110_av.c
··· 25 25 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 26 26 * 27 27 * 28 - * the project's page is at http://www.linuxtv.org/dvb/ 28 + * the project's page is at http://www.linuxtv.org/ 29 29 */ 30 30 31 31 #include <linux/types.h>
+1 -1
drivers/media/dvb/ttpci/av7110_ca.c
··· 25 25 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 26 26 * 27 27 * 28 - * the project's page is at http://www.linuxtv.org/dvb/ 28 + * the project's page is at http://www.linuxtv.org/ 29 29 */ 30 30 31 31 #include <linux/kernel.h>
+1 -1
drivers/media/dvb/ttpci/av7110_hw.c
··· 22 22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 23 23 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 24 24 * 25 - * the project's page is at http://www.linuxtv.org/dvb/ 25 + * the project's page is at http://www.linuxtv.org/ 26 26 */ 27 27 28 28 /* for debugging ARM communication: */
+1 -1
drivers/media/dvb/ttpci/av7110_v4l.c
··· 22 22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 23 23 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 24 24 * 25 - * the project's page is at http://www.linuxtv.org/dvb/ 25 + * the project's page is at http://www.linuxtv.org/ 26 26 */ 27 27 28 28 #include <linux/kernel.h>
+1 -1
drivers/media/dvb/ttpci/budget-av.c
··· 30 30 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 31 31 * 32 32 * 33 - * the project's page is at http://www.linuxtv.org/dvb/ 33 + * the project's page is at http://www.linuxtv.org/ 34 34 */ 35 35 36 36 #include "budget.h"
+1 -1
drivers/media/dvb/ttpci/budget-ci.c
··· 26 26 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 27 27 * 28 28 * 29 - * the project's page is at http://www.linuxtv.org/dvb/ 29 + * the project's page is at http://www.linuxtv.org/ 30 30 */ 31 31 32 32 #include <linux/module.h>
+1 -1
drivers/media/dvb/ttpci/budget-core.c
··· 31 31 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 32 32 * 33 33 * 34 - * the project's page is at http://www.linuxtv.org/dvb/ 34 + * the project's page is at http://www.linuxtv.org/ 35 35 */ 36 36 37 37
+1 -1
drivers/media/dvb/ttpci/budget-patch.c
··· 27 27 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 28 28 * 29 29 * 30 - * the project's page is at http://www.linuxtv.org/dvb/ 30 + * the project's page is at http://www.linuxtv.org/ 31 31 */ 32 32 33 33 #include "av7110.h"
+1 -1
drivers/media/dvb/ttpci/budget.c
··· 31 31 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html 32 32 * 33 33 * 34 - * the project's page is at http://www.linuxtv.org/dvb/ 34 + * the project's page is at http://www.linuxtv.org/ 35 35 */ 36 36 37 37 #include "budget.h"
+1 -1
drivers/media/radio/radio-maxiradio.c
··· 13 13 * anybody does please mail me. 14 14 * 15 15 * For the pdf file see: 16 - * http://www.semiconductors.philips.com/pip/TEA5757H/V1 16 + * http://www.nxp.com/acrobat_download2/expired_datasheets/TEA5757_5759_3.pdf 17 17 * 18 18 * 19 19 * CHANGES:
-3
drivers/media/radio/radio-typhoon.c
··· 1 1 /* Typhoon Radio Card driver for radio support 2 2 * (c) 1999 Dr. Henrik Seidel <Henrik.Seidel@gmx.de> 3 3 * 4 - * Card manufacturer: 5 - * http://194.18.155.92/idc/prod2.idc?nr=50753&lang=e 6 - * 7 4 * Notes on the hardware 8 5 * 9 6 * This card has two output sockets, one for speakers and one for line.
+1 -1
drivers/media/video/Kconfig
··· 978 978 Supported devices are typically found in some Asus laptops, 979 979 with USB id 174f:a311 and 05e1:0501. Other Syntek cameras 980 980 may be supported by the stk11xx driver, from which this is 981 - derived, see http://stk11xx.sourceforge.net 981 + derived, see <http://sourceforge.net/projects/syntekdriver/> 982 982 983 983 To compile this driver as a module, choose M here: the 984 984 module will be called stkwebcam.
+1 -1
drivers/media/video/cafe_ccic.c
··· 4 4 * sensor. 5 5 * 6 6 * The data sheet for this device can be found at: 7 - * http://www.marvell.com/products/pcconn/88ALP01.jsp 7 + * http://www.marvell.com/products/pc_connectivity/88alp01/ 8 8 * 9 9 * Copyright 2006 One Laptop Per Child Association, Inc. 10 10 * Copyright 2006-7 Jonathan Corbet <corbet@lwn.net>
+1 -1
drivers/media/video/cx18/cx18-cards.c
··· 39 39 .tv = { 0x61, 0x60, I2C_CLIENT_END }, 40 40 }; 41 41 42 - /* Please add new PCI IDs to: http://pci-ids.ucw.cz/iii 42 + /* Please add new PCI IDs to: http://pci-ids.ucw.cz/ 43 43 This keeps the PCI ID database up to date. Note that the entries 44 44 must be added under vendor 0x4444 (Conexant) as subsystem IDs. 45 45 New vendor IDs should still be added to the vendor ID list. */
+1 -1
drivers/media/video/cx23885/cx23885-417.c
··· 7 7 * (c) 2008 Steven Toth <stoth@linuxtv.org> 8 8 * - CX23885/7/8 support 9 9 * 10 - * Includes parts from the ivtv driver( http://ivtv.sourceforge.net/), 10 + * Includes parts from the ivtv driver <http://sourceforge.net/projects/ivtv/> 11 11 * 12 12 * This program is free software; you can redistribute it and/or modify 13 13 * it under the terms of the GNU General Public License as published by
+1 -1
drivers/media/video/cx88/cx88-blackbird.c
··· 9 9 * (c) 2005-2006 Mauro Carvalho Chehab <mchehab@infradead.org> 10 10 * - video_ioctl2 conversion 11 11 * 12 - * Includes parts from the ivtv driver( http://ivtv.sourceforge.net/), 12 + * Includes parts from the ivtv driver <http://sourceforge.net/projects/ivtv/> 13 13 * 14 14 * This program is free software; you can redistribute it and/or modify 15 15 * it under the terms of the GNU General Public License as published by
+1 -1
drivers/media/video/ivtv/ivtv-cards.c
··· 65 65 66 66 /********************** card configuration *******************************/ 67 67 68 - /* Please add new PCI IDs to: http://pci-ids.ucw.cz/iii 68 + /* Please add new PCI IDs to: http://pci-ids.ucw.cz/ 69 69 This keeps the PCI ID database up to date. Note that the entries 70 70 must be added under vendor 0x4444 (Conexant) as subsystem IDs. 71 71 New vendor IDs should still be added to the vendor ID list. */
+1 -1
drivers/media/video/mxb.c
··· 3 3 4 4 Copyright (C) 1998-2006 Michael Hunold <michael@mihu.de> 5 5 6 - Visit http://www.mihu.de/linux/saa7146/mxb/ 6 + Visit http://www.themm.net/~mihu/linux/saa7146/mxb.html 7 7 for further details about this card. 8 8 9 9 This program is free software; you can redistribute it and/or modify
-1
drivers/media/video/sn9c102/sn9c102_pas202bcb.c
··· 4 4 * * 5 5 * Copyright (C) 2004 by Carlos Eduardo Medaglia Dyonisio * 6 6 * <medaglia@undl.org.br> * 7 - * http://cadu.homelinux.com:8080/ * 8 7 * * 9 8 * Support for SN9C103, DAC Magnitude, exposure and green gain controls * 10 9 * added by Luca Risolia <luca.risolia@studio.unibo.it> *
+1 -1
drivers/media/video/zoran/videocodec.h
··· 56 56 the slave is bound to it). Otherwise it doesn't need this functions and 57 57 therfor they may not be initialized. 58 58 59 - The other fuctions are just for convenience, as they are for sure used by 59 + The other functions are just for convenience, as they are for sure used by 60 60 most/all of the codecs. The last ones may be ommited, too. 61 61 62 62 See the structure declaration below for more information and which data has
+1 -1
drivers/media/video/zoran/zoran_driver.c
··· 1177 1177 if (height > BUZ_MAX_HEIGHT) 1178 1178 height = BUZ_MAX_HEIGHT; 1179 1179 1180 - /* Check for vaild parameters */ 1180 + /* Check for invalid parameters */ 1181 1181 if (width < BUZ_MIN_WIDTH || height < BUZ_MIN_HEIGHT || 1182 1182 width > BUZ_MAX_WIDTH || height > BUZ_MAX_HEIGHT) { 1183 1183 dprintk(1,
+3 -3
drivers/misc/Kconfig
··· 112 112 113 113 WARNING: This software may not be supported or function 114 114 correctly on your IBM server. Please consult the IBM ServerProven 115 - website <http://www.pc.ibm.com/ww/eserver/xseries/serverproven> for 116 - information on the specific driver level and support statement 115 + website <http://www-03.ibm.com/systems/info/x86servers/serverproven/compat/us/> 116 + for information on the specific driver level and support statement 117 117 for your IBM server. 118 118 119 119 config PHANTOM ··· 385 385 depends on I2C && SYSFS 386 386 help 387 387 If you say yes here you get support for the Bosch Sensortec 388 - BMP086 digital pressure sensor. 388 + BMP085 digital pressure sensor. 389 389 390 390 To compile this driver as a module, choose M here: the 391 391 module will be called bmp085.
+2 -2
drivers/mtd/chips/cfi_cmdset_0002.c
··· 418 418 419 419 /* 420 420 * Valid primary extension versions are: 1.0, 1.1, 1.2, 1.3, 1.4 421 - * see: http://www.amd.com/us-en/assets/content_type/DownloadableAssets/cfi_r20.pdf, page 19 422 - * http://www.amd.com/us-en/assets/content_type/DownloadableAssets/cfi_100_20011201.pdf 421 + * see: http://cs.ozerki.net/zap/pub/axim-x5/docs/cfi_r20.pdf, page 19 422 + * http://www.spansion.com/Support/AppNotes/cfi_100_20011201.pdf 423 423 * http://www.spansion.com/Support/Datasheets/s29ws-p_00_a12_e.pdf 424 424 */ 425 425 if (extp->MajorVersion != '1' ||
+1 -1
drivers/mtd/devices/lart.c
··· 17 17 * - January 2000 18 18 * 19 19 * [2] MTD internal API documentation 20 - * - http://www.linux-mtd.infradead.org/tech/ 20 + * - http://www.linux-mtd.infradead.org/ 21 21 * 22 22 * Limitations: 23 23 *
+1 -1
drivers/mtd/ftl.c
··· 51 51 52 52 Use of the FTL format for non-PCMCIA applications may be an 53 53 infringement of these patents. For additional information, 54 - contact M-Systems (http://www.m-sys.com) directly. 54 + contact M-Systems directly. M-Systems since acquired by Sandisk. 55 55 56 56 ======================================================================*/ 57 57 #include <linux/mtd/blktrans.h>
+2 -2
drivers/mtd/maps/Kconfig
··· 172 172 This provides a 'mapping' driver which supports the way in which 173 173 the flash chips are connected in the Octagon-5066 Single Board 174 174 Computer. More information on the board is available at 175 - <http://www.octagonsystems.com/CPUpages/5066.html>. 175 + <http://www.octagonsystems.com/products/5066.aspx>. 176 176 177 177 config MTD_VMAX 178 178 tristate "JEDEC Flash device mapped on Tempustech VMAX SBC301" ··· 284 284 chips, currently uses AMD one. This 'mapping' driver supports 285 285 that arrangement, allowing the CFI probe and command set driver 286 286 code to communicate with the chips on the TQM8xxL board. More at 287 - <http://www.denx.de/embedded-ppc-en.html>. 287 + <http://www.denx.de/wiki/PPCEmbedded/>. 288 288 289 289 config MTD_RPXLITE 290 290 tristate "CFI Flash device mapped on RPX Lite or CLLF"
+1 -1
drivers/mtd/nand/cafe_nand.c
··· 2 2 * Driver for One Laptop Per Child ‘CAFÉ’ controller, aka Marvell 88ALP01 3 3 * 4 4 * The data sheet for this device can be found at: 5 - * http://www.marvell.com/products/pcconn/88ALP01.jsp 5 + * http://wiki.laptop.org/go/Datasheets 6 6 * 7 7 * Copyright © 2006 Red Hat, Inc. 8 8 * Copyright © 2006 David Woodhouse <dwmw2@infradead.org>
+10 -11
drivers/net/Kconfig
··· 924 924 including the SMC91C94 and the SMC91C111. Say Y if you want it 925 925 compiled into the kernel, and read the file 926 926 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO, 927 - available from <http://www.linuxdoc.org/docs.html#howto>. 927 + available from <http://www.tldp.org/docs.html#howto>. 928 928 929 929 This driver is also available as a module ( = code which can be 930 930 inserted in and removed from the running kernel whenever you want). ··· 1034 1034 including the new LAN9115, LAN9116, LAN9117, and LAN9118. 1035 1035 Say Y if you want it compiled into the kernel, 1036 1036 and read the Ethernet-HOWTO, available from 1037 - <http://www.linuxdoc.org/docs.html#howto>. 1037 + <http://www.tldp.org/docs.html#howto>. 1038 1038 1039 1039 This driver is also available as a module. The module will be 1040 1040 called smc911x. If you want to compile it as a module, say M ··· 1516 1516 1517 1517 For the latest Intel PRO/100 network driver for Linux, see: 1518 1518 1519 - <http://appsr.intel.com/scripts-df/support_intel.asp> 1519 + <http://www.intel.com/p/en_US/support/highlights/network/pro100plus> 1520 1520 1521 1521 More specific information on configuring the driver is in 1522 1522 <file:Documentation/networking/e100.txt>. ··· 1542 1542 select CRC32 1543 1543 select MII 1544 1544 help 1545 - Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet 1546 - cards. Specifications and data at 1547 - <http://www.myson.com.hk/mtd/datasheet/>. 1545 + Say Y here to support the Myson MTD-800 family of PCI-based Ethernet 1546 + cards. <http://www.myson.com.tw/> 1548 1547 1549 1548 config NATSEMI 1550 1549 tristate "National Semiconductor DP8381x series PCI Ethernet support" ··· 1717 1718 This is a driver for SMSC's LAN9420 PCI ethernet adapter. 1718 1719 Say Y if you want it compiled into the kernel, 1719 1720 and read the Ethernet-HOWTO, available from 1720 - <http://www.linuxdoc.org/docs.html#howto>. 1721 + <http://www.tldp.org/docs.html#howto>. 1721 1722 1722 1723 This driver is also available as a module. The module will be 1723 1724 called smsc9420. If you want to compile it as a module, say M ··· 2564 2565 our website at <http://www.chelsio.com>. 2565 2566 2566 2567 For customer support, please visit our customer support page at 2567 - <http://www.chelsio.com/support.htm>. 2568 + <http://www.chelsio.com/support.html>. 2568 2569 2569 2570 Please send feedback to <linux-bugs@chelsio.com>. 2570 2571 ··· 2596 2597 our website at <http://www.chelsio.com>. 2597 2598 2598 2599 For customer support, please visit our customer support page at 2599 - <http://www.chelsio.com/support.htm>. 2600 + <http://www.chelsio.com/support.html>. 2600 2601 2601 2602 Please send feedback to <linux-bugs@chelsio.com>. 2602 2603 ··· 2621 2622 our website at <http://www.chelsio.com>. 2622 2623 2623 2624 For customer support, please visit our customer support page at 2624 - <http://www.chelsio.com/support.htm>. 2625 + <http://www.chelsio.com/support.html>. 2625 2626 2626 2627 Please send feedback to <linux-bugs@chelsio.com>. 2627 2628 ··· 2644 2645 our website at <http://www.chelsio.com>. 2645 2646 2646 2647 For customer support, please visit our customer support page at 2647 - <http://www.chelsio.com/support.htm>. 2648 + <http://www.chelsio.com/support.html>. 2648 2649 2649 2650 Please send feedback to <linux-bugs@chelsio.com>. 2650 2651
+1 -1
drivers/net/appletalk/Kconfig
··· 19 19 20 20 General information about how to connect Linux, Windows machines and 21 21 Macs is on the WWW at <http://www.eats.com/linux_mac_win.html>. The 22 - NET-3-HOWTO, available from 22 + NET3-4-HOWTO, available from 23 23 <http://www.tldp.org/docs.html#howto>, contains valuable 24 24 information as well. 25 25
+1 -1
drivers/net/atp.c
··· 68 68 69 69 In 1997 Realtek made available the documentation for the second generation 70 70 RTL8012 chip, which has lead to several driver improvements. 71 - http://www.realtek.com.tw/cn/cn.html 71 + http://www.realtek.com.tw/ 72 72 73 73 Theory of Operation 74 74
+1 -1
drivers/net/depca.c
··· 1487 1487 if (!pldev->dev.driver) { 1488 1488 /* The driver was not bound to this device, there was 1489 1489 * no hardware at this address. Unregister it, as the 1490 - * release fuction will take care of freeing the 1490 + * release function will take care of freeing the 1491 1491 * allocated structure */ 1492 1492 1493 1493 depca_io_ports[i].device = NULL;
+2 -2
drivers/net/epic100.c
··· 131 131 132 132 IVb. References 133 133 134 - http://www.smsc.com/main/tools/discontinued/83c171.pdf 135 - http://www.smsc.com/main/tools/discontinued/83c175.pdf 134 + http://www.smsc.com/media/Downloads_Public/discontinued/83c171.pdf 135 + http://www.smsc.com/media/Downloads_Public/discontinued/83c175.pdf 136 136 http://scyld.com/expert/NWay.html 137 137 http://www.national.com/pf/DP/DP83840A.html 138 138
+1 -1
drivers/net/hamradio/Kconfig
··· 73 73 certain parameters, such as channel access timing, clock mode, and 74 74 DMA channel. This is accomplished with a small utility program, 75 75 dmascc_cfg, available at 76 - <http://cacofonix.nt.tuwien.ac.at/~oe1kib/Linux/>. Please be sure to 76 + <http://www.linux-ax25.org/wiki/Ax25-tools>. Please be sure to 77 77 get at least version 1.27 of dmascc_cfg, as older versions will not 78 78 work with the current driver. 79 79
+1 -1
drivers/net/ibmlana.c
··· 23 23 'LAN Technical Reference Ethernet Adapter Interface Version 1 Release 1.0 24 24 Document Number SC30-3661-00' by IBM for info on the adapter itself 25 25 26 - Also see http://www.natsemi.com/ 26 + Also see http://www.national.com/analog 27 27 28 28 special acknowledgements to: 29 29 - Bob Eager for helping me out with documentation from IBM
+1 -1
drivers/net/igb/igb_main.c
··· 3540 3540 * Stores a new ITR value based on strictly on packet size. This 3541 3541 * algorithm is less sophisticated than that used in igb_update_itr, 3542 3542 * due to the difficulty of synchronizing statistics across multiple 3543 - * receive rings. The divisors and thresholds used by this fuction 3543 + * receive rings. The divisors and thresholds used by this function 3544 3544 * were determined based on theoretical maximum wire speed and testing 3545 3545 * data, in order to minimize response time while increasing bulk 3546 3546 * throughput.
+1 -1
drivers/net/irda/ali-ircc.c
··· 142 142 * Function ali_ircc_init () 143 143 * 144 144 * Initialize chip. Find out whay kinds of chips we are dealing with 145 - * and their configuation registers address 145 + * and their configuration registers address 146 146 */ 147 147 static int __init ali_ircc_init(void) 148 148 {
+1 -1
drivers/net/irda/donauboe.h
··· 54 54 /* anyone who has. HOWEVER the chip bears a striking resemblence */ 55 55 /* to the IrDA controller in the Toshiba RISC TMPR3922 chip */ 56 56 /* the documentation for this is freely available at */ 57 - /* http://www.toshiba.com/taec/components/Generic/TMPR3922.shtml */ 57 + /* http://www.madingley.org/james/resources/toshoboe/TMPR3922.pdf */ 58 58 /* The mapping between the registers in that document and the */ 59 59 /* Registers in the 701 oboe chip are as follows */ 60 60
+1 -1
drivers/net/pci-skeleton.c
··· 78 78 79 79 IVb. References 80 80 81 - http://www.realtek.com.tw/cn/cn.html 81 + http://www.realtek.com.tw/ 82 82 http://www.scyld.com/expert/NWay.html 83 83 84 84 IVc. Errata
+1 -1
drivers/net/pcmcia/3c574_cs.c
··· 62 62 V. References 63 63 64 64 http://www.scyld.com/expert/NWay.html 65 - http://www.national.com/pf/DP/DP83840.html 65 + http://www.national.com/opf/DP/DP83840A.html 66 66 67 67 Thanks to Terry Murphy of 3Com for providing development information for 68 68 earlier 3Com products.
+2 -2
drivers/net/ps3_gelic_net.c
··· 642 642 status = lv1_net_stop_rx_dma(bus_id(card), dev_id(card), 0); 643 643 if (status) 644 644 dev_err(ctodev(card), 645 - "lv1_net_stop_rx_dma faild, %d\n", status); 645 + "lv1_net_stop_rx_dma failed, %d\n", status); 646 646 } 647 647 648 648 /** ··· 660 660 status = lv1_net_stop_tx_dma(bus_id(card), dev_id(card), 0); 661 661 if (status) 662 662 dev_err(ctodev(card), 663 - "lv1_net_stop_tx_dma faild, status=%d\n", status); 663 + "lv1_net_stop_tx_dma failed, status=%d\n", status); 664 664 } 665 665 666 666 /**
+3 -3
drivers/net/sb1250-mac.c
··· 95 95 #include <asm/sibyte/sb1250_regs.h> 96 96 #include <asm/sibyte/sb1250_int.h> 97 97 #else 98 - #error invalid SiByte MAC configuation 98 + #error invalid SiByte MAC configuration 99 99 #endif 100 100 #include <asm/sibyte/sb1250_scd.h> 101 101 #include <asm/sibyte/sb1250_mac.h> ··· 106 106 #elif defined(CONFIG_SIBYTE_SB1250) || defined(CONFIG_SIBYTE_BCM112X) 107 107 #define UNIT_INT(n) (K_INT_MAC_0 + (n)) 108 108 #else 109 - #error invalid SiByte MAC configuation 109 + #error invalid SiByte MAC configuration 110 110 #endif 111 111 112 112 #ifdef K_INT_PHY ··· 1568 1568 M_MAC_RX_ENABLE | 1569 1569 M_MAC_TX_ENABLE, s->sbm_macenable); 1570 1570 #else 1571 - #error invalid SiByte MAC configuation 1571 + #error invalid SiByte MAC configuration 1572 1572 #endif 1573 1573 1574 1574 #ifdef CONFIG_SBMAC_COALESCE
+1 -1
drivers/net/sc92031.c
··· 15 15 * Rewritten for 2.6 by Cesar Eduardo Barros 16 16 * 17 17 * A datasheet for this chip can be found at 18 - * http://www.silan.com.cn/english/products/pdf/SC92031AY.pdf 18 + * http://www.silan.com.cn/english/product/pdf/SC92031AY.pdf 19 19 */ 20 20 21 21 /* Note about set_mac_address: I don't know how to change the hardware
+1 -1
drivers/net/skfp/hwt.c
··· 221 221 * para start start time 222 222 * duration time to wait 223 223 * 224 - * NOTE: The fuction will return immediately, if the timer is not 224 + * NOTE: The function will return immediately, if the timer is not 225 225 * started 226 226 ************************/ 227 227 void hwt_wait_time(struct s_smc *smc, u_long start, long int duration)
+1 -1
drivers/net/skfp/skfddi.c
··· 33 33 * The driver architecture is based on the DEC FDDI driver by 34 34 * Lawrence V. Stefani and several ethernet drivers. 35 35 * I also used an existing Windows NT miniport driver. 36 - * All hardware dependent fuctions are handled by the SysKonnect 36 + * All hardware dependent functions are handled by the SysKonnect 37 37 * Hardware Module. 38 38 * The only headerfiles that are directly related to this source 39 39 * are skfddi.c, h/types.h, h/osdef1st.h, h/targetos.h.
+1 -1
drivers/net/tlan.c
··· 78 78 * - Updated tlan.txt accordingly. 79 79 * - Adjusted minimum/maximum frame length. 80 80 * - There is now a TLAN website up at 81 - * http://tlan.kernel.dk 81 + * http://hp.sourceforge.net/ 82 82 * 83 83 * v1.7 April 07, 2000 - Started to implement custom ioctls. Driver now 84 84 * reports PHY information when used with Donald
+1 -1
drivers/net/tokenring/tms380tr.c
··· 5 5 * Originally sktr.c: Written 1997 by Christoph Goos 6 6 * 7 7 * A fine result of the Linux Systems Network Architecture Project. 8 - * http://www.linux-sna.org 8 + * http://www.vanheusden.com/sna/ 9 9 * 10 10 * This software may be used and distributed according to the terms 11 11 * of the GNU General Public License, incorporated herein by reference.
+1 -1
drivers/net/tulip/Kconfig
··· 151 151 select CRC32 152 152 ---help--- 153 153 This driver is for ULi M5261/M5263 10/100M Ethernet Controller 154 - (<http://www.uli.com.tw/>). 154 + (<http://www.nvidia.com/page/uli_drivers.html>). 155 155 156 156 To compile this driver as a module, choose M here. The module will 157 157 be called uli526x.
+1 -1
drivers/net/tulip/pnic2.c
··· 59 59 * Bit 14:12 - autonegotiation state (write 001 to start autonegotiate) 60 60 * Bit 3 - Autopolarity state 61 61 * Bit 2 - LS10B - link state of 10baseT 0 - good, 1 - failed 62 - * Bit 1 - LS100B - link state of 100baseT 0 - good, 1- faild 62 + * Bit 1 - LS100B - link state of 100baseT 0 - good, 1 - failed 63 63 * 64 64 * 65 65 * Data Port Selection Info
+1 -1
drivers/net/usb/plusb.c
··· 32 32 33 33 34 34 /* 35 - * Prolific PL-2301/PL-2302 driver ... http://www.prolifictech.com 35 + * Prolific PL-2301/PL-2302 driver ... http://www.prolific.com.tw/ 36 36 * 37 37 * The protocol and handshaking used here should be bug-compatible 38 38 * with the Linux 2.2 "plusb" driver, by Deti Fliegl.
+1 -1
drivers/net/wan/Kconfig
··· 409 409 tristate "Cyclom 2X(tm) cards (EXPERIMENTAL)" 410 410 depends on WAN_ROUTER_DRIVERS && (PCI || ISA) 411 411 ---help--- 412 - Cyclom 2X from Cyclades Corporation <http://www.cyclades.com/> is an 412 + Cyclom 2X from Cyclades Corporation <http://www.avocent.com/> is an 413 413 intelligent multiprotocol WAN adapter with data transfer rates up to 414 414 512 Kbps. These cards support the X.25 and SNA related protocols. 415 415
+1 -1
drivers/net/wan/hdlc.c
··· 109 109 return NOTIFY_DONE; /* not an HDLC device */ 110 110 111 111 if (event != NETDEV_CHANGE) 112 - return NOTIFY_DONE; /* Only interrested in carrier changes */ 112 + return NOTIFY_DONE; /* Only interested in carrier changes */ 113 113 114 114 on = netif_carrier_ok(dev); 115 115
+1 -1
drivers/net/wireless/ath/ath5k/ath5k.h
··· 348 348 /* 349 349 * Some of this information is based on Documentation from: 350 350 * 351 - * http://madwifi.org/wiki/ChipsetFeatures/SuperAG 351 + * http://madwifi-project.org/wiki/ChipsetFeatures/SuperAG 352 352 * 353 353 * Modulation for Atheros' eXtended Range - range enhancing extension that is 354 354 * supposed to double the distance an Atheros client device can keep a
-1
drivers/net/wireless/ath/ath5k/reg.h
··· 26 26 * Atheros presentations and papers like these: 27 27 * 28 28 * 5210 - http://nova.stanford.edu/~bbaas/ps/isscc2002_slides.pdf 29 - * http://www.it.iitb.ac.in/~janak/wifire/01222734.pdf 30 29 * 31 30 * 5211 - http://www.hotchips.org/archives/hc14/3_Tue/16_mcfarland.pdf 32 31 *
+1 -1
drivers/net/wireless/hostap/hostap_hw.c
··· 2621 2621 iface = netdev_priv(dev); 2622 2622 local = iface->local; 2623 2623 2624 - /* Detect early interrupt before driver is fully configued */ 2624 + /* Detect early interrupt before driver is fully configured */ 2625 2625 spin_lock(&local->irq_init_lock); 2626 2626 if (!dev->base_addr) { 2627 2627 if (net_ratelimit()) {
+3 -3
drivers/net/wireless/p54/Kconfig
··· 9 9 also need to be enabled in order to support any devices. 10 10 11 11 These devices require softmac firmware which can be found at 12 - http://prism54.org/ 12 + <http://wireless.kernel.org/en/users/Drivers/p54> 13 13 14 14 If you choose to build a module, it'll be called p54common. 15 15 ··· 21 21 This driver is for USB isl38xx based wireless cards. 22 22 23 23 These devices require softmac firmware which can be found at 24 - http://prism54.org/ 24 + <http://wireless.kernel.org/en/users/Drivers/p54> 25 25 26 26 If you choose to build a module, it'll be called p54usb. 27 27 ··· 35 35 supported by the fullmac driver/firmware. 36 36 37 37 This driver requires softmac firmware which can be found at 38 - http://prism54.org/ 38 + <http://wireless.kernel.org/en/users/Drivers/p54> 39 39 40 40 If you choose to build a module, it'll be called p54pci. 41 41
+1 -1
drivers/net/wireless/prism54/islpci_hotplug.c
··· 38 38 /* In this order: vendor, device, subvendor, subdevice, class, class_mask, 39 39 * driver_data 40 40 * If you have an update for this please contact prism54-devel@prism54.org 41 - * The latest list can be found at http://prism54.org/supported_cards.php */ 41 + * The latest list can be found at http://wireless.kernel.org/en/users/Drivers/p54 */ 42 42 static DEFINE_PCI_DEVICE_TABLE(prism54_id_tbl) = { 43 43 /* Intersil PRISM Duette/Prism GT Wireless LAN adapter */ 44 44 {
+1 -2
drivers/parisc/README.dino
··· 10 10 ** PCI bus. HP-supplied graphics cards that utilize the PCI bus are 11 11 ** not affected." 12 12 ** 13 - ** REVISIT: "go/pci_defect" link below is stale. 14 - ** HP Internal can use <http://hpfcdma.fc.hp.com:80/Dino/> 13 + ** http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?locale=en_US&prodTypeId=12454&prodSeriesId=44443 15 14 ** 16 15 ** Product First Good Serial Number 17 16 ** C200/C240 (US) US67350000
+1 -1
drivers/parport/parport_pc.c
··· 2599 2599 printk(KERN_INFO "parport_pc: ITE8873 found (1S)\n"); 2600 2600 return 0; 2601 2601 case 0x8: 2602 - DPRINTK(KERN_DEBUG "parport_pc: ITE8874 found (2S)\n"); 2602 + printk(KERN_INFO "parport_pc: ITE8874 found (2S)\n"); 2603 2603 return 0; 2604 2604 default: 2605 2605 printk(KERN_INFO "parport_pc: unknown ITE887x\n");
+2 -1
drivers/pci/quirks.c
··· 226 226 * VIA Apollo KT133 needs PCI latency patch 227 227 * Made according to a windows driver based patch by George E. Breese 228 228 * see PCI Latency Adjust on http://www.viahardware.com/download/viatweak.shtm 229 + * and http://www.georgebreese.com/net/software/#PCI 229 230 * Also see http://www.au-ja.org/review-kt133a-1-en.phtml for 230 231 * the info on which Mr Breese based his work. 231 232 * ··· 1017 1016 /* 1018 1017 * Common misconfiguration of the MediaGX/Geode PCI master that will 1019 1018 * reduce PCI bandwidth from 70MB/s to 25MB/s. See the GXM/GXLV/GX1 1020 - * datasheets found at http://www.national.com/ds/GX for info on what 1019 + * datasheets found at http://www.national.com/analog for info on what 1021 1020 * these bits do. <christer@weinigel.se> 1022 1021 */ 1023 1022 static void quirk_mediagx_master(struct pci_dev *dev)
+1 -1
drivers/pcmcia/yenta_socket.c
··· 1072 1072 * invisible during PCI scans because of a misconfigured subordinate number 1073 1073 * of the parent brige - some BIOSes seem to be too lazy to set it right. 1074 1074 * Does the fixup carefully by checking how far it can go without conflicts. 1075 - * See http\://bugzilla.kernel.org/show_bug.cgi?id=2944 for more information. 1075 + * See http://bugzilla.kernel.org/show_bug.cgi?id=2944 for more information. 1076 1076 */ 1077 1077 static void yenta_fixup_parent_bridge(struct pci_bus *cardbus_bridge) 1078 1078 {
-1
drivers/pnp/pnpbios/proc.c
··· 11 11 * 12 12 * The .../escd file is utilized by the lsescd utility written by 13 13 * Gunther Mayer. 14 - * http://home.t-online.de/home/gunther.mayer/lsescd 15 14 * 16 15 * The .../legacy_device_resources file is not used yet. 17 16 *
+1 -1
drivers/rtc/rtc-nuc900.c
··· 274 274 nuc900_rtc->rtcdev = rtc_device_register(pdev->name, &pdev->dev, 275 275 &nuc900_rtc_ops, THIS_MODULE); 276 276 if (IS_ERR(nuc900_rtc->rtcdev)) { 277 - dev_err(&pdev->dev, "rtc device register faild\n"); 277 + dev_err(&pdev->dev, "rtc device register failed\n"); 278 278 err = PTR_ERR(nuc900_rtc->rtcdev); 279 279 goto fail3; 280 280 }
+1 -1
drivers/s390/block/dasd_3990_erp.c
··· 2197 2197 2198 2198 /* 2199 2199 ***************************************************************************** 2200 - * main ERP control fuctions (24 and 32 byte sense) 2200 + * main ERP control functions (24 and 32 byte sense) 2201 2201 ***************************************************************************** 2202 2202 */ 2203 2203
+2 -2
drivers/s390/block/dasd_eckd.c
··· 1190 1190 goto out_err2; 1191 1191 } 1192 1192 /* 1193 - * dasd_eckd_vaildate_server is done on the first device that 1193 + * dasd_eckd_validate_server is done on the first device that 1194 1194 * is found for an LCU. All later other devices have to wait 1195 1195 * for it, so they will read the correct feature codes. 1196 1196 */ ··· 1216 1216 "Read device characteristic failed, rc=%d", rc); 1217 1217 goto out_err3; 1218 1218 } 1219 - /* find the vaild cylinder size */ 1219 + /* find the valid cylinder size */ 1220 1220 if (private->rdc_data.no_cyl == LV_COMPAT_CYL && 1221 1221 private->rdc_data.long_no_cyl) 1222 1222 private->real_cyl = private->rdc_data.long_no_cyl;
+3 -3
drivers/s390/char/tape_3590.c
··· 31 31 EXPORT_SYMBOL(TAPE_DBF_AREA); 32 32 33 33 /******************************************************************* 34 - * Error Recovery fuctions: 34 + * Error Recovery functions: 35 35 * - Read Opposite: implemented 36 36 * - Read Device (buffered) log: BRA 37 37 * - Read Library log: BRA ··· 798 798 } 799 799 800 800 /* 801 - * This fuction is called, when error recovery was successfull 801 + * This function is called, when error recovery was successful 802 802 */ 803 803 static inline int 804 804 tape_3590_erp_succeded(struct tape_device *device, struct tape_request *request) ··· 809 809 } 810 810 811 811 /* 812 - * This fuction is called, when error recovery was not successfull 812 + * This function is called, when error recovery was not successful 813 813 */ 814 814 static inline int 815 815 tape_3590_erp_failed(struct tape_device *device, struct tape_request *request,
+3 -3
drivers/s390/char/vmcp.c
··· 47 47 { 48 48 struct vmcp_session *session; 49 49 50 - session = (struct vmcp_session *)file->private_data; 50 + session = file->private_data; 51 51 file->private_data = NULL; 52 52 free_pages((unsigned long)session->response, get_order(session->bufsize)); 53 53 kfree(session); ··· 94 94 return -EFAULT; 95 95 } 96 96 cmd[count] = '\0'; 97 - session = (struct vmcp_session *)file->private_data; 97 + session = file->private_data; 98 98 if (mutex_lock_interruptible(&session->mutex)) { 99 99 kfree(cmd); 100 100 return -ERESTARTSYS; ··· 136 136 int __user *argp; 137 137 int temp; 138 138 139 - session = (struct vmcp_session *)file->private_data; 139 + session = file->private_data; 140 140 if (is_compat_task()) 141 141 argp = compat_ptr(arg); 142 142 else
+5 -4
drivers/scsi/Kconfig
··· 116 116 <http://www.tldp.org/docs.html#howto> and 117 117 <file:Documentation/scsi/osst.txt> in the kernel source. 118 118 More info on the OnStream driver may be found on 119 - <http://linux1.onstream.nl/test/> 119 + <http://sourceforge.net/projects/osst/> 120 120 Please also have a look at the standard st docu, as most of it 121 121 applies to osst as well. 122 122 ··· 156 156 directly, so you need some additional software which knows how to 157 157 talk to these devices using the SCSI protocol: 158 158 159 - For scanners, look at SANE (<http://www.mostang.com/sane/>). For CD 159 + For scanners, look at SANE (<http://www.sane-project.org/>). For CD 160 160 writer software look at Cdrtools 161 - (<http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html>) 161 + (<http://cdrecord.berlios.de/private/cdrecord.html>) 162 162 and for burning a "disk at once": CDRDAO 163 163 (<http://cdrdao.sourceforge.net/>). Cdparanoia is a high 164 164 quality digital reader of audio CDs (<http://www.xiph.org/paranoia/>). ··· 951 951 ---help--- 952 952 This is support for the IBM ServeRAID hardware RAID controllers. 953 953 See <http://www.developer.ibm.com/welcome/netfinity/serveraid.html> 954 + and <http://www-947.ibm.com/support/entry/portal/docdisplay?brand=5000008&lndocid=SERV-RAID> 954 955 for more information. If this driver does not work correctly 955 956 without modification please contact the author by email at 956 957 <ipslinux@adaptec.com>. ··· 1611 1610 host adapter with one dummy SCSI disk. Each dummy disk uses kernel 1612 1611 RAM as storage (i.e. it is a ramdisk). To save space when multiple 1613 1612 dummy disks are simulated, they share the same kernel RAM for 1614 - their storage. See <http://www.torque.net/sg/sdebug.html> for more 1613 + their storage. See <http://sg.danny.cz/sg/sdebug26.html> for more 1615 1614 information. This driver is primarily of use to those testing the 1616 1615 SCSI and block subsystems. If unsure, say N. 1617 1616
+1 -1
drivers/scsi/aacraid/linit.c
··· 771 771 { 772 772 if (!capable(CAP_SYS_RAWIO)) 773 773 return -EPERM; 774 - return aac_compat_do_ioctl((struct aac_dev *)file->private_data, cmd, arg); 774 + return aac_compat_do_ioctl(file->private_data, cmd, arg); 775 775 } 776 776 #endif 777 777
+1 -1
drivers/scsi/lpfc/lpfc_hbadisc.c
··· 5509 5509 * @buff: Buffer containing config region 23 data. 5510 5510 * @size: Size of the data buffer. 5511 5511 * 5512 - * This fuction parse the FCoE config parameters in config region 23 and 5512 + * This function parses the FCoE config parameters in config region 23 and 5513 5513 * populate driver data structure with the parameters. 5514 5514 */ 5515 5515 void
+1 -1
drivers/scsi/sg.c
··· 212 212 213 213 static int sg_allow_access(struct file *filp, unsigned char *cmd) 214 214 { 215 - struct sg_fd *sfp = (struct sg_fd *)filp->private_data; 215 + struct sg_fd *sfp = filp->private_data; 216 216 217 217 if (sfp->parentdp->device->type == TYPE_SCANNER) 218 218 return 0;
+1 -1
drivers/serial/8250.c
··· 919 919 /* 920 920 * Exar ST16C2550 "A2" devices incorrectly detect as 921 921 * having an EFR, and report an ID of 0x0201. See 922 - * http://www.exar.com/info.php?pdf=dan180_oct2004.pdf 922 + * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html 923 923 */ 924 924 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16) 925 925 return 1;
+1 -1
drivers/serial/bfin_sport_uart.c
··· 10 10 11 11 /* 12 12 * This driver and the hardware supported are in term of EE-191 of ADI. 13 - * http://www.analog.com/UploadedFiles/Application_Notes/399447663EE191.pdf 13 + * http://www.analog.com/static/imported-files/application_notes/EE191.pdf 14 14 * This application note describe how to implement a UART on a Sharc DSP, 15 15 * but this driver is implemented on Blackfin Processor. 16 16 * Transmit Frame Sync is not used by this driver to transfer data out.
+1 -1
drivers/serial/bfin_sport_uart.h
··· 10 10 11 11 /* 12 12 * This driver and the hardware supported are in term of EE-191 of ADI. 13 - * http://www.analog.com/UploadedFiles/Application_Notes/399447663EE191.pdf 13 + * http://www.analog.com/static/imported-files/application_notes/EE191.pdf 14 14 * This application note describe how to implement a UART on a Sharc DSP, 15 15 * but this driver is implemented on Blackfin Processor. 16 16 * Transmit Frame Sync is not used by this driver to transfer data out.
+1 -1
drivers/serial/uartlite.c
··· 44 44 * Register definitions 45 45 * 46 46 * For register details see datasheet: 47 - * http://www.xilinx.com/bvdocs/ipcenter/data_sheet/opb_uartlite.pdf 47 + * http://www.xilinx.com/support/documentation/ip_documentation/opb_uartlite.pdf 48 48 */ 49 49 50 50 #define ULITE_RX 0x00
+1 -1
drivers/staging/asus_oled/README
··· 2 2 Driver for Asus OLED display present in some Asus laptops. 3 3 4 4 The code of this driver is based on 'asusoled' program taken from 5 - https://launchpad.net/asusoled/. I just wanted to have a simple 5 + <http://lapsus.berlios.de/asus_oled.html>. I just wanted to have a simple 6 6 kernel driver for controlling this device, but I didn't know how 7 7 to do that. Now I know ;) Also, that program can not be used 8 8 with usbhid loaded, which means no USB mouse/keyboard while
+1 -1
drivers/staging/asus_oled/asus_oled.c
··· 24 24 * 25 25 * 26 26 * Asus OLED support is based on asusoled program taken from 27 - * https://launchpad.net/asusoled/. 27 + * <http://lapsus.berlios.de/asus_oled.html>. 28 28 * 29 29 * 30 30 */
+1 -1
drivers/staging/comedi/drivers/cb_pcimdas.c
··· 37 37 Developed from cb_pcidas and skel by Richard Bytheway (mocelet@sucs.org). 38 38 Only supports DIO, AO and simple AI in it's present form. 39 39 No interrupts, multi channel or FIFO AI, although the card looks like it could support this. 40 - See http://www.measurementcomputing.com/PDFManuals/pcim-das1602_16.pdf for more details. 40 + See http://www.mccdaq.com/PDFs/Manuals/pcim-das1602-16.pdf for more details. 41 41 */ 42 42 43 43 #include "../comedidev.h"
+2 -2
drivers/staging/comedi/drivers/daqboard2000.c
··· 50 50 With some help from our swedish distributor, we got the Windows sourcecode 51 51 for the card, and here are the findings so far. 52 52 53 - 1. A good document that describes the PCI interface chip is found at: 54 - http://plx.plxtech.com/download/9080/databook/9080db-106.pdf 53 + 1. A good document that describes the PCI interface chip is 9080db-106.pdf 54 + available from http://www.plxtech.com/products/io/pci9080 55 55 56 56 2. The initialization done so far is: 57 57 a. program the FPGA (windows code sans a lot of error messages)
+1 -1
drivers/staging/comedi/drivers/ni_labpc.c
··· 37 37 yet been added to the driver, mainly due to the fact that 38 38 I don't know the device id numbers. If you have one 39 39 of these boards, 40 - please file a bug report at https://bugs.comedi.org/ 40 + please file a bug report at http://comedi.org/ 41 41 so I can get the necessary information from you. 42 42 43 43 The 1200 series boards have onboard calibration dacs for correcting
+1 -1
drivers/staging/comedi/drivers/ni_mio_common.c
··· 34 34 340747b.pdf AT-MIO E series Register Level Programmer Manual 35 35 341079b.pdf PCI E Series RLPM 36 36 340934b.pdf DAQ-STC reference manual 37 - 67xx and 611x registers (from http://www.ni.com/pdf/daq/us) 37 + 67xx and 611x registers (from ftp://ftp.ni.com/support/daq/mhddk/documentation/) 38 38 release_ni611x.pdf 39 39 release_ni67xx.pdf 40 40 Other possibly relevant info:
+1 -1
drivers/staging/comedi/drivers/plx9080.h
··· 13 13 * 14 14 ******************************************************************** 15 15 * 16 - * Copyright (C) 1999 RG Studio s.c., http://www.rgstudio.com.pl/ 16 + * Copyright (C) 1999 RG Studio s.c. 17 17 * Written by Krzysztof Halasa <khc@rgstudio.com.pl> 18 18 * 19 19 * Portions (C) SBE Inc., used by permission.
+1 -1
drivers/staging/comedi/drivers/rtd520.c
··· 59 59 Data sheet: http://www.rtdusa.com/pdf/dm7520.pdf 60 60 Example source: http://www.rtdusa.com/examples/dm/dm7520.zip 61 61 Call them and ask for the register level manual. 62 - PCI chip: http://www.plxtech.com/products/toolbox/9080.htm 62 + PCI chip: http://www.plxtech.com/products/io/pci9080 63 63 64 64 Notes: 65 65 This board is memory mapped. There is some IO stuff, but it isn't needed.
+1 -2
drivers/staging/quickstart/quickstart.c
··· 5 5 * Copyright (C) 2007-2010 Angelo Arrifano <miknix@gmail.com> 6 6 * 7 7 * Information gathered from disassebled dsdt and from here: 8 - * "http://download.microsoft.com/download/9/c/5/ 9 - * 9c5b2167-8017-4bae-9fde-d599bac8184a/DirAppLaunch_Vista.doc" 8 + * <http://www.microsoft.com/whdc/system/platform/firmware/DirAppLaunch.mspx> 10 9 * 11 10 * This program is free software; you can redistribute it and/or modify 12 11 * it under the terms of the GNU General Public License as published by
+3 -3
drivers/uio/Kconfig
··· 17 17 depends on PCI 18 18 help 19 19 Driver for Hilscher CIF DeviceNet and Profibus cards. This 20 - driver requires a userspace component that handles all of the 21 - heavy lifting and can be found at: 22 - http://www.osadl.org/projects/downloads/UIO/user/cif-* 20 + driver requires a userspace component called cif that handles 21 + all of the heavy lifting and can be found at: 22 + <http://www.osadl.org/projects/downloads/UIO/user/> 23 23 24 24 To compile this driver as a module, choose M here: the module 25 25 will be called uio_cif.
-1
drivers/usb/gadget/at91_udc.c
··· 1266 1266 csr |= AT91_UDP_TXPKTRDY; 1267 1267 __raw_writel(csr, creg); 1268 1268 udc->req_pending = 0; 1269 - return; 1270 1269 } 1271 1270 1272 1271 static void handle_ep0(struct at91_udc *udc)
-2
drivers/usb/gadget/f_audio.c
··· 317 317 318 318 u_audio_playback(&audio->card, play_buf->buf, play_buf->actual); 319 319 f_audio_buffer_free(play_buf); 320 - 321 - return; 322 320 } 323 321 324 322 static int f_audio_out_ep_complete(struct usb_ep *ep, struct usb_request *req)
-4
drivers/usb/gadget/f_hid.c
··· 318 318 spin_unlock(&hidg->spinlock); 319 319 320 320 wake_up(&hidg->read_queue); 321 - 322 - return; 323 321 } 324 322 325 323 static int hidg_setup(struct usb_function *f, ··· 411 413 412 414 usb_ep_disable(hidg->in_ep); 413 415 hidg->in_ep->driver_data = NULL; 414 - 415 - return; 416 416 } 417 417 418 418 static int hidg_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
-6
drivers/usb/gadget/fsl_udc_core.c
··· 287 287 temp = fsl_readl(&dr_regs->usbcmd); 288 288 temp |= USB_CMD_RUN_STOP; 289 289 fsl_writel(temp, &dr_regs->usbcmd); 290 - 291 - return; 292 290 } 293 291 294 292 static void dr_controller_stop(struct fsl_udc *udc) ··· 306 308 tmp = fsl_readl(&dr_regs->usbcmd); 307 309 tmp &= ~USB_CMD_RUN_STOP; 308 310 fsl_writel(tmp, &dr_regs->usbcmd); 309 - 310 - return; 311 311 } 312 312 313 313 static void dr_ep_setup(unsigned char ep_num, unsigned char dir, ··· 412 416 p_QH->max_pkt_length = cpu_to_le32(tmp); 413 417 p_QH->next_dtd_ptr = 1; 414 418 p_QH->size_ioc_int_sts = 0; 415 - 416 - return; 417 419 } 418 420 419 421 /* Setup qh structure and ep register for ep0. */
-2
drivers/usb/gadget/pxa27x_udc.c
··· 1394 1394 } 1395 1395 1396 1396 spin_unlock_irqrestore(&ep->lock, flags); 1397 - 1398 - return; 1399 1397 } 1400 1398 1401 1399 /**
-2
drivers/usb/gadget/rndis.c
··· 918 918 919 919 if (configNr >= RNDIS_MAX_CONFIGS) return; 920 920 rndis_per_dev_params[configNr].used = 0; 921 - 922 - return; 923 921 } 924 922 925 923 int rndis_set_param_dev(u8 configNr, struct net_device *dev, u16 *cdc_filter)
-1
drivers/usb/host/ehci-hcd.c
··· 1095 1095 ep->hcpriv = NULL; 1096 1096 done: 1097 1097 spin_unlock_irqrestore (&ehci->lock, flags); 1098 - return; 1099 1098 } 1100 1099 1101 1100 static void
+2 -2
drivers/usb/host/imx21-hcd.c
··· 27 27 * * 32 transfer descriptors (called ETDs) 28 28 * * 4Kb of Data memory 29 29 * 30 - * The data memory is shared between the host and fuction controlers 31 - * (but this driver only supports the host controler) 30 + * The data memory is shared between the host and function controllers 31 + * (but this driver only supports the host controller) 32 32 * 33 33 * So setting up a transfer involves: 34 34 * * Allocating a ETD
-1
drivers/usb/host/ohci-hcd.c
··· 370 370 } 371 371 ep->hcpriv = NULL; 372 372 spin_unlock_irqrestore (&ohci->lock, flags); 373 - return; 374 373 } 375 374 376 375 static int ohci_get_frame (struct usb_hcd *hcd)
-9
drivers/usb/host/oxu210hp-hcd.c
··· 544 544 qtd->buffer = NULL; 545 545 546 546 spin_unlock(&oxu->mem_lock); 547 - 548 - return; 549 547 } 550 548 551 549 static inline void ehci_qtd_init(struct ehci_qtd *qtd, dma_addr_t dma) ··· 569 571 oxu->qtd_used[index] = 0; 570 572 571 573 spin_unlock(&oxu->mem_lock); 572 - 573 - return; 574 574 } 575 575 576 576 static struct ehci_qtd *ehci_qtd_alloc(struct oxu_hcd *oxu) ··· 611 615 oxu->qh_used[index] = 0; 612 616 613 617 spin_unlock(&oxu->mem_lock); 614 - 615 - return; 616 618 } 617 619 618 620 static void qh_destroy(struct kref *kref) ··· 687 693 oxu->murb_used[index] = 0; 688 694 689 695 spin_unlock(&oxu->mem_lock); 690 - 691 - return; 692 696 } 693 697 694 698 static struct oxu_murb *oxu_murb_alloc(struct oxu_hcd *oxu) ··· 3062 3070 ep->hcpriv = NULL; 3063 3071 done: 3064 3072 spin_unlock_irqrestore(&oxu->lock, flags); 3065 - return; 3066 3073 } 3067 3074 3068 3075 static int oxu_get_frame(struct usb_hcd *hcd)
-2
drivers/usb/host/pci-quirks.c
··· 342 342 writel(0x3f, op_reg_base + EHCI_USBSTS); 343 343 344 344 iounmap(base); 345 - 346 - return; 347 345 } 348 346 349 347 /*
+2 -6
drivers/usb/host/u132-hcd.c
··· 316 316 } else if (queue_delayed_work(workqueue, &ring->scheduler, 0)) 317 317 return; 318 318 kref_put(&u132->kref, u132_hcd_delete); 319 - return; 320 319 } 321 320 322 321 static void u132_ring_queue_work(struct u132 *u132, struct u132_ring *ring, ··· 323 324 { 324 325 kref_get(&u132->kref); 325 326 u132_ring_requeue_work(u132, ring, delta); 326 - return; 327 327 } 328 328 329 329 static void u132_ring_cancel_work(struct u132 *u132, struct u132_ring *ring) ··· 541 543 mutex_unlock(&u132->scheduler_lock); 542 544 u132_endp_put_kref(u132, endp); 543 545 usb_hcd_giveback_urb(hcd, urb, status); 544 - return; 545 546 } 546 547 547 548 static void u132_hcd_forget_urb(struct u132 *u132, struct u132_endp *endp, ··· 571 574 endp->active = 0; 572 575 spin_unlock_irqrestore(&endp->queue_lock.slock, irqs); 573 576 kfree(urbq); 574 - } usb_hcd_giveback_urb(hcd, urb, status); 575 - return; 577 + } 578 + usb_hcd_giveback_urb(hcd, urb, status); 576 579 } 577 580 578 581 static inline int edset_input(struct u132 *u132, struct u132_ring *ring, ··· 3082 3085 u132->endp[endps] = NULL; 3083 3086 3084 3087 mutex_unlock(&u132->sw_lock); 3085 - return; 3086 3088 } 3087 3089 3088 3090 static int __devinit u132_probe(struct platform_device *pdev)
-9
drivers/usb/image/microtek.c
··· 398 398 context->srb->result = DID_ERROR << 16; 399 399 mts_transfer_cleanup(transfer); 400 400 } 401 - return; 402 401 } 403 402 404 403 ··· 408 409 409 410 if ( likely(context->final_callback != NULL) ) 410 411 context->final_callback(context->srb); 411 - 412 412 } 413 413 414 414 static void mts_transfer_done( struct urb *transfer ) ··· 418 420 context->srb->result |= (unsigned)(*context->scsi_status)<<1; 419 421 420 422 mts_transfer_cleanup(transfer); 421 - 422 - return; 423 423 } 424 424 425 425 ··· 448 452 } 449 453 450 454 mts_get_status(transfer); 451 - 452 - return; 453 455 } 454 456 455 457 ··· 490 496 mts_get_status(transfer); 491 497 } 492 498 } 493 - 494 - return; 495 499 } 496 500 497 501 static void mts_do_sg (struct urb* transfer) ··· 514 522 sg[context->fragment].length, 515 523 context->fragment + 1 == scsi_sg_count(context->srb) ? 516 524 mts_data_done : mts_do_sg); 517 - return; 518 525 } 519 526 520 527 static const u8 mts_read_image_sig[] = { 0x28, 00, 00, 00 };
-2
drivers/usb/misc/ftdi-elan.c
··· 456 456 static void ftdi_elan_kick_command_queue(struct usb_ftdi *ftdi) 457 457 { 458 458 ftdi_command_queue_work(ftdi, 0); 459 - return; 460 459 } 461 460 462 461 static void ftdi_elan_command_work(struct work_struct *work) ··· 482 483 static void ftdi_elan_kick_respond_queue(struct usb_ftdi *ftdi) 483 484 { 484 485 ftdi_respond_queue_work(ftdi, 0); 485 - return; 486 486 } 487 487 488 488 static void ftdi_elan_respond_work(struct work_struct *work)
-2
drivers/usb/mon/mon_main.c
··· 90 90 r->rnf_submit(r->r_data, urb); 91 91 } 92 92 spin_unlock_irqrestore(&mbus->lock, flags); 93 - return; 94 93 } 95 94 96 95 static void mon_submit(struct usb_bus *ubus, struct urb *urb) ··· 116 117 r->rnf_error(r->r_data, urb, error); 117 118 } 118 119 spin_unlock_irqrestore(&mbus->lock, flags); 119 - return; 120 120 } 121 121 122 122 static void mon_submit_error(struct usb_bus *ubus, struct urb *urb, int error)
+2 -2
drivers/usb/serial/Kconfig
··· 176 176 help 177 177 Say Y here if you want to connect to your HandSpring Visor, Palm 178 178 m500 or m505 through its USB docking station. See 179 - <http://usbvisor.sourceforge.net/> for more information on using this 179 + <http://usbvisor.sourceforge.net/index.php3> for more information on using this 180 180 driver. 181 181 182 182 To compile this driver as a module, choose M here: the ··· 289 289 and was developed with their support. You must also include 290 290 firmware to support your particular device(s). 291 291 292 - See <http://misc.nu/hugh/keyspan.html> for more information. 292 + See <http://blemings.org/hugh/keyspan.html> for more information. 293 293 294 294 To compile this driver as a module, choose M here: the 295 295 module will be called keyspan.
-2
drivers/usb/serial/cypress_m8.c
··· 1320 1320 cypress_set_dead(port); 1321 1321 } 1322 1322 } 1323 - 1324 - return; 1325 1323 } /* cypress_read_int_callback */ 1326 1324 1327 1325
-1
drivers/usb/serial/ftdi_sio.c
··· 2108 2108 } 2109 2109 2110 2110 } 2111 - return; 2112 2111 } 2113 2112 2114 2113 static int ftdi_tiocmget(struct tty_struct *tty, struct file *file)
+6 -6
drivers/usb/serial/ftdi_sio_ids.h
··· 46 46 #define FTDI_USINT_RS232_PID 0xb812 /* Navigator RS232 and CONFIG lines */ 47 47 48 48 /* OOCDlink by Joern Kaipf <joernk@web.de> 49 - * (http://www.joernonline.de/dw/doku.php?id=start&idx=projects:oocdlink) */ 49 + * (http://www.joernonline.de/) */ 50 50 #define FTDI_OOCDLINK_PID 0xbaf8 /* Amontec JTAGkey */ 51 51 52 52 /* Luminary Micro Stellaris Boards, VID = FTDI_VID */ ··· 336 336 #define FTDI_PIEGROUP_PID 0xF208 /* Product Id */ 337 337 338 338 /* ACT Solutions HomePro ZWave interface 339 - (http://www.act-solutions.com/HomePro.htm) */ 339 + (http://www.act-solutions.com/HomePro-Product-Matrix.html) */ 340 340 #define FTDI_ACTZWAVE_PID 0xF2D0 341 341 342 342 /* ··· 367 367 #define FTDI_SUUNTO_SPORTS_PID 0xF680 /* Suunto Sports instrument */ 368 368 369 369 /* USB-UIRT - An infrared receiver and transmitter using the 8U232AM chip */ 370 - /* http://home.earthlink.net/~jrhees/USBUIRT/index.htm */ 370 + /* http://www.usbuirt.com/ */ 371 371 #define FTDI_USB_UIRT_PID 0xF850 /* Product Id */ 372 372 373 373 /* CCS Inc. ICDU/ICDU40 product ID - ··· 396 396 */ 397 397 #define FTDI_HE_TIRA1_PID 0xFA78 /* Tira-1 IR transceiver */ 398 398 399 - /* Inside Accesso contactless reader (http://www.insidefr.com) */ 399 + /* Inside Accesso contactless reader (http://www.insidecontactless.com/) */ 400 400 #define INSIDE_ACCESSO 0xFAD0 401 401 402 402 /* ··· 635 635 636 636 /* 637 637 * JETI SPECTROMETER SPECBOS 1201 638 - * http://www.jeti.com/products/sys/scb/scb1201.php 638 + * http://www.jeti.com/cms/index.php/instruments/other-instruments/specbos-2101 639 639 */ 640 640 #define JETI_VID 0x0c6c 641 641 #define JETI_SPC1201_PID 0x04b2 642 642 643 643 /* 644 644 * FTDI USB UART chips used in construction projects from the 645 - * Elektor Electronics magazine (http://elektor-electronics.co.uk) 645 + * Elektor Electronics magazine (http://www.elektor.com/) 646 646 */ 647 647 #define ELEKTOR_VID 0x0C7D 648 648 #define ELEKTOR_FT323R_PID 0x0005 /* RFID-Reader, issue 09-2006 */
-1
drivers/usb/serial/garmin_gps.c
··· 1264 1264 garmin_data_p->flags &= ~FLAGS_BULK_IN_ACTIVE; 1265 1265 spin_unlock_irqrestore(&garmin_data_p->lock, flags); 1266 1266 } 1267 - return; 1268 1267 } 1269 1268 1270 1269
-11
drivers/usb/serial/io_edgeport.c
··· 1467 1467 if (status != 0) 1468 1468 return; 1469 1469 } 1470 - 1471 - return; 1472 1470 } 1473 1471 1474 1472 ··· 1773 1775 dbg("%s - error sending break set/clear command.", 1774 1776 __func__); 1775 1777 } 1776 - 1777 - return; 1778 1778 } 1779 1779 1780 1780 ··· 2043 2047 dbg("%s - Unrecognized IOSP status code %u", __func__, code); 2044 2048 break; 2045 2049 } 2046 - return; 2047 2050 } 2048 2051 2049 2052 ··· 2095 2100 2096 2101 /* Save the new modem status */ 2097 2102 edge_port->shadowMSR = newMsr & 0xf0; 2098 - 2099 - return; 2100 2103 } 2101 2104 2102 2105 ··· 2141 2148 icount->parity++; 2142 2149 if (newLsr & LSR_FRM_ERR) 2143 2150 icount->frame++; 2144 - 2145 - return; 2146 2151 } 2147 2152 2148 2153 ··· 2716 2725 baud = tty_termios_baud_rate(old_termios); 2717 2726 tty_encode_baud_rate(tty, baud, baud); 2718 2727 } 2719 - return; 2720 2728 } 2721 2729 2722 2730 ··· 2917 2927 0x40, 0x4000, 0x0001, NULL, 0, 3000); 2918 2928 2919 2929 release_firmware(fw); 2920 - return; 2921 2930 } 2922 2931 2923 2932
-4
drivers/usb/serial/io_ti.c
··· 1571 1571 } 1572 1572 } 1573 1573 tty_kref_put(tty); 1574 - 1575 - return; 1576 1574 } 1577 1575 1578 1576 static void handle_new_lsr(struct edgeport_port *edge_port, int lsr_data, ··· 2422 2424 dbg("%s - error %d when trying to write config to device", 2423 2425 __func__, status); 2424 2426 kfree(config); 2425 - return; 2426 2427 } 2427 2428 2428 2429 static void edge_set_termios(struct tty_struct *tty, ··· 2442 2445 return; 2443 2446 /* change the port settings to the new ones specified */ 2444 2447 change_port_settings(tty, edge_port, old_termios); 2445 - return; 2446 2448 } 2447 2449 2448 2450 static int edge_tiocmset(struct tty_struct *tty, struct file *file,
-1
drivers/usb/serial/iuu_phoenix.c
··· 807 807 iuu_uart_read_callback, port); 808 808 result = usb_submit_urb(port->read_urb, GFP_ATOMIC); 809 809 dbg("%s - submit result = %d", __func__, result); 810 - return; 811 810 } 812 811 813 812 static int iuu_uart_on(struct usb_serial_port *port)
+1 -1
drivers/usb/serial/keyspan.c
··· 9 9 the Free Software Foundation; either version 2 of the License, or 10 10 (at your option) any later version. 11 11 12 - See http://misc.nu/hugh/keyspan.html for more information. 12 + See http://blemings.org/hugh/keyspan.html for more information. 13 13 14 14 Code in this driver inspired by and in a number of places taken 15 15 from Brian Warner's original Keyspan-PDA driver.
+1 -1
drivers/usb/serial/keyspan.h
··· 9 9 the Free Software Foundation; either version 2 of the License, or 10 10 (at your option) any later version. 11 11 12 - See http://misc.nu/hugh/keyspan.html for more information. 12 + See http://blemings.org/hugh/keyspan.html for more information. 13 13 14 14 Code in this driver inspired by and in a number of places taken 15 15 from Brian Warner's original Keyspan-PDA driver.
-1
drivers/usb/serial/keyspan_pda.c
··· 292 292 port->interrupt_in_urb->dev = port->serial->dev; 293 293 if (usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL)) 294 294 dbg(" usb_submit_urb(read urb) failed"); 295 - return; 296 295 } 297 296 298 297
+4 -5
drivers/usb/serial/mct_u232.h
··· 10 10 * 11 11 * This driver is for the device MCT USB-RS232 Converter (25 pin, Model No. 12 12 * U232-P25) from Magic Control Technology Corp. (there is also a 9 pin 13 - * Model No. U232-P9). See http://www.mct.com.tw/p_u232.html for further 14 - * information. The properties of this device are listed at the end of this 15 - * file. This device is available from various distributors. I know Hana, 16 - * http://www.hana.de and D-Link, http://www.dlink.com/products/usb/dsbs25. 13 + * Model No. U232-P9). See http://www.mct.com.tw/products/product_us232.html 14 + * for further information. The properties of this device are listed at the end 15 + * of this file. This device was used in the Dlink DSB-S25. 17 16 * 18 17 * All of the information about the device was acquired by using SniffUSB 19 18 * on Windows98. The technical details of the reverse engineering are ··· 457 458 * embedded UART. Exhaustive documentation for these is available at: 458 459 * 459 460 * http://www.semiconductors.philips.com/pip/p87c52ubaa 460 - * http://www.semiconductors.philips.com/pip/pdiusbd12 461 + * http://www.nxp.com/acrobat_download/various/PDIUSBD12_PROGRAMMING_GUIDE.pdf 461 462 * 462 463 * Thanks to Julian Highfield for the pointer to the Philips database. 463 464 *
-6
drivers/usb/serial/mos7720.c
··· 827 827 dev_err(&urb->dev->dev, 828 828 "%s - Error %d submitting control urb\n", 829 829 __func__, result); 830 - return; 831 830 } 832 831 833 832 /* ··· 906 907 dev_err(&urb->dev->dev, 907 908 "%s - Error %d submitting control urb\n", 908 909 __func__, result); 909 - return; 910 910 } 911 911 912 912 /* ··· 1225 1227 mos7720_port->shadowLCR = data; 1226 1228 write_mos_reg(serial, port->number - port->serial->minor, 1227 1229 LCR, mos7720_port->shadowLCR); 1228 - 1229 - return; 1230 1230 } 1231 1231 1232 1232 /* ··· 1742 1746 dbg("usb_submit_urb(read bulk) failed, status = %d", 1743 1747 status); 1744 1748 } 1745 - return; 1746 1749 } 1747 1750 1748 1751 /* ··· 1798 1803 dbg("usb_submit_urb(read bulk) failed, status = %d", 1799 1804 status); 1800 1805 } 1801 - return; 1802 1806 } 1803 1807 1804 1808 /*
-7
drivers/usb/serial/mos7840.c
··· 1367 1367 mos7840_port->shadowLCR); 1368 1368 mos7840_set_uart_reg(port, LINE_CONTROL_REGISTER, 1369 1369 mos7840_port->shadowLCR); 1370 - 1371 - return; 1372 1370 } 1373 1371 1374 1372 /***************************************************************************** ··· 1597 1599 if (status < 0) 1598 1600 return; 1599 1601 } 1600 - 1601 - return; 1602 1602 } 1603 1603 1604 1604 /***************************************************************************** ··· 2071 2075 mos7840_port->delta_msr_cond = 1; 2072 2076 dbg("mos7840_change_port_settings mos7840_port->shadowLCR is End %x", 2073 2077 mos7840_port->shadowLCR); 2074 - 2075 - return; 2076 2078 } 2077 2079 2078 2080 /***************************************************************************** ··· 2139 2145 mos7840_port->read_urb_busy = false; 2140 2146 } 2141 2147 } 2142 - return; 2143 2148 } 2144 2149 2145 2150 /*****************************************************************************
-2
drivers/usb/serial/omninet.c
··· 246 246 dev_err(&port->dev, 247 247 "%s - failed resubmitting read urb, error %d\n", 248 248 __func__, result); 249 - 250 - return; 251 249 } 252 250 253 251 static int omninet_write(struct tty_struct *tty, struct usb_serial_port *port,
-2
drivers/usb/serial/sierra.c
··· 620 620 dev_err(&port->dev, "resubmit read urb failed." 621 621 "(%d)\n", err); 622 622 } 623 - 624 - return; 625 623 } 626 624 627 625 static void sierra_instat_callback(struct urb *urb)
-1
drivers/usb/serial/spcp8x5.c
··· 441 441 spcp8x5_set_workMode(serial->dev, 0x000a, 442 442 SET_WORKING_MODE_U2C, priv->type); 443 443 } 444 - return; 445 444 } 446 445 447 446 /* open the serial port. do some usb system call. set termios and get the line
-1
drivers/usb/serial/usb_wwan.c
··· 234 234 } 235 235 236 236 } 237 - return; 238 237 } 239 238 240 239 static void usb_wwan_outdat_callback(struct urb *urb)
-6
drivers/usb/serial/whiteheat.c
··· 655 655 } 656 656 kfree(info); 657 657 } 658 - 659 - return; 660 658 } 661 659 662 660 static int whiteheat_open(struct tty_struct *tty, struct usb_serial_port *port) ··· 953 955 spin_lock_irq(&info->lock); 954 956 info->flags |= THROTTLED; 955 957 spin_unlock_irq(&info->lock); 956 - 957 - return; 958 958 } 959 959 960 960 ··· 971 975 972 976 if (actually_throttled) 973 977 rx_data_softint(&info->rx_work); 974 - 975 - return; 976 978 } 977 979 978 980
+1 -1
drivers/usb/storage/Kconfig
··· 36 36 depends on USB_STORAGE 37 37 help 38 38 Support for certain Datafab CompactFlash readers. 39 - Datafab has a web page at <http://www.datafabusa.com/>. 39 + Datafab has a web page at <http://www.datafab.com/>. 40 40 41 41 If this driver is compiled as a module, it will be named ums-datafab. 42 42
+5 -5
drivers/video/Kconfig
··· 49 49 You need an utility program called fbset to make full use of frame 50 50 buffer devices. Please read <file:Documentation/fb/framebuffer.txt> 51 51 and the Framebuffer-HOWTO at 52 - <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.2.html> for more 52 + <http://www.munted.org.uk/programming/Framebuffer-HOWTO-1.3.html> for more 53 53 information. 54 54 55 55 Say Y here and to the driver for your graphics board below if you ··· 955 955 Build in support for the SED1355 Epson Research Embedded RAMDAC 956 956 LCD/CRT Controller (since redesignated as the S1D13505) as a 957 957 framebuffer. Product specs at 958 - <http://www.erd.epson.com/vdc/html/products.htm>. 958 + <http://vdc.epson.com/>. 959 959 960 960 config FB_S1D13XXX 961 961 tristate "Epson S1D13XXX framebuffer support" ··· 966 966 help 967 967 Support for S1D13XXX framebuffer device family (currently only 968 968 working with S1D13806). Product specs at 969 - <http://www.erd.epson.com/vdc/html/legacy_13xxx.htm> 969 + <http://vdc.epson.com/> 970 970 971 971 config FB_ATMEL 972 972 tristate "AT91/AT32 LCD Controller support" ··· 1323 1323 don't need to choose this to run the Radeon in plain VGA mode. 1324 1324 1325 1325 There is a product page at 1326 - http://apps.ati.com/ATIcompare/ 1326 + http://products.amd.com/en-us/GraphicCardResult.aspx 1327 1327 1328 1328 config FB_RADEON_I2C 1329 1329 bool "DDC/I2C for ATI Radeon support" ··· 1395 1395 Say Y here to support use of ATI's 64-bit Rage boards (or other 1396 1396 boards based on the Mach64 CT, VT, GT, and LT chipsets) as a 1397 1397 framebuffer device. The ATI product support page for these boards 1398 - is at <http://support.ati.com/products/pc/mach64/>. 1398 + is at <http://support.ati.com/products/pc/mach64/mach64.html>. 1399 1399 1400 1400 config FB_ATY_GENERIC_LCD 1401 1401 bool "Mach64 generic LCD support (EXPERIMENTAL)"
-1
drivers/video/arcfb.c
··· 2 2 * linux/drivers/video/arcfb.c -- FB driver for Arc monochrome LCD board 3 3 * 4 4 * Copyright (C) 2005, Jaya Kumar <jayalk@intworks.biz> 5 - * http://www.intworks.biz/arclcd 6 5 * 7 6 * This file is subject to the terms and conditions of the GNU General Public 8 7 * License. See the file COPYING in the main directory of this archive for
+3 -3
drivers/video/bf54x-lq043fb.c
··· 241 241 u16 disp = fbi->mach_info->disp; 242 242 243 243 if (gpio_request(disp, DRIVER_NAME)) { 244 - printk(KERN_ERR "Requesting GPIO %d faild\n", disp); 244 + printk(KERN_ERR "Requesting GPIO %d failed\n", disp); 245 245 return -EFAULT; 246 246 } 247 247 248 248 if (peripheral_request_list(eppi_req_18, DRIVER_NAME)) { 249 - printk(KERN_ERR "Requesting Peripherals faild\n"); 249 + printk(KERN_ERR "Requesting Peripherals failed\n"); 250 250 gpio_free(disp); 251 251 return -EFAULT; 252 252 } ··· 256 256 u16 eppi_req_24[] = EPPI0_24; 257 257 258 258 if (peripheral_request_list(eppi_req_24, DRIVER_NAME)) { 259 - printk(KERN_ERR "Requesting Peripherals faild\n"); 259 + printk(KERN_ERR "Requesting Peripherals failed\n"); 260 260 peripheral_free_list(eppi_req_18); 261 261 gpio_free(disp); 262 262 return -EFAULT;
+1 -1
drivers/video/bfin-t350mcqb-fb.c
··· 192 192 { 193 193 if (action) { 194 194 if (peripheral_request_list(ppi0_req_8, DRIVER_NAME)) { 195 - printk(KERN_ERR "Requesting Peripherals faild\n"); 195 + printk(KERN_ERR "Requesting Peripherals failed\n"); 196 196 return -EFAULT; 197 197 } 198 198 } else
+1 -1
drivers/video/epson1355fb.c
··· 4 4 * Epson Research S1D13505 Embedded RAMDAC LCD/CRT Controller 5 5 * (previously known as SED1355) 6 6 * 7 - * Cf. http://www.erd.epson.com/vdc/html/S1D13505.html 7 + * Cf. http://vdc.epson.com/ 8 8 * 9 9 * 10 10 * Copyright (C) Hewlett-Packard Company. All rights reserved.
+1 -1
drivers/video/fbcvt.c
··· 5 5 * 6 6 * Based from the VESA(TM) Coordinated Video Timing Generator by 7 7 * Graham Loveridge April 9, 2003 available at 8 - * http://www.vesa.org/public/CVT/CVTd6r1.xls 8 + * http://www.elo.utfsm.cl/~elo212/docs/CVTd6r1.xls 9 9 * 10 10 * This file is subject to the terms and conditions of the GNU General Public 11 11 * License. See the file COPYING in the main directory of this archive
+1 -1
drivers/video/metronomefb.c
··· 10 10 * Layout is based on skeletonfb.c by James Simmons and Geert Uytterhoeven. 11 11 * 12 12 * This work was made possible by help and equipment support from E-Ink 13 - * Corporation. http://support.eink.com/community 13 + * Corporation. http://www.eink.com/ 14 14 * 15 15 * This driver is written to be used with the Metronome display controller. 16 16 * It is intended to be architecture independent. A board specific driver
+1 -1
drivers/video/vesafb.c
··· 253 253 size_vmode = vesafb_defined.yres * vesafb_fix.line_length; 254 254 255 255 /* size_total -- all video memory we have. Used for mtrr 256 - * entries, ressource allocation and bounds 256 + * entries, resource allocation and bounds 257 257 * checking. */ 258 258 size_total = screen_info.lfb_size * 65536; 259 259 if (vram_total)
+1 -1
firmware/keyspan_pda/keyspan_pda.S
··· 74 74 * recognizes the new device ID and glues it to the real serial driver code. 75 75 * 76 76 * USEFUL DOCS: 77 - * EzUSB Technical Reference Manual: <http://www.anchorchips.com> 77 + * EzUSB Technical Reference Manual: <http://www.cypress.com/> 78 78 * 8051 manuals: everywhere, but try www.dalsemi.com because the EzUSB is 79 79 * basically the Dallas enhanced 8051 code. Remember that the EzUSB IO ports 80 80 * use totally different registers!
+1 -1
firmware/keyspan_pda/xircom_pgs.S
··· 74 74 * recognizes the new device ID and glues it to the real serial driver code. 75 75 * 76 76 * USEFUL DOCS: 77 - * EzUSB Technical Reference Manual: <http://www.anchorchips.com> 77 + * EzUSB Technical Reference Manual: <http://www.cypress.com/> 78 78 * 8051 manuals: everywhere, but try www.dalsemi.com because the EzUSB is 79 79 * basically the Dallas enhanced 8051 code. Remember that the EzUSB IO ports 80 80 * use totally different registers!
+1 -1
fs/ecryptfs/ecryptfs_kernel.h
··· 477 477 static inline struct ecryptfs_file_info * 478 478 ecryptfs_file_to_private(struct file *file) 479 479 { 480 - return (struct ecryptfs_file_info *)file->private_data; 480 + return file->private_data; 481 481 } 482 482 483 483 static inline void
+7 -7
fs/exofs/inode.c
··· 511 511 512 512 pcol_copy = kmalloc(sizeof(*pcol_copy), GFP_KERNEL); 513 513 if (!pcol_copy) { 514 - EXOFS_ERR("write_exec: Faild to kmalloc(pcol)\n"); 514 + EXOFS_ERR("write_exec: Failed to kmalloc(pcol)\n"); 515 515 ret = -ENOMEM; 516 516 goto err; 517 517 } ··· 527 527 528 528 ret = exofs_oi_write(oi, ios); 529 529 if (unlikely(ret)) { 530 - EXOFS_ERR("write_exec: exofs_oi_write() Faild\n"); 530 + EXOFS_ERR("write_exec: exofs_oi_write() Failed\n"); 531 531 goto err; 532 532 } 533 533 ··· 628 628 /* split the request, next loop will start again */ 629 629 ret = write_exec(pcol); 630 630 if (unlikely(ret)) { 631 - EXOFS_DBGMSG("write_exec faild => %d", ret); 631 + EXOFS_DBGMSG("write_exec failed => %d", ret); 632 632 goto fail; 633 633 } 634 634 ··· 719 719 ret = simple_write_begin(file, mapping, pos, len, flags, pagep, 720 720 fsdata); 721 721 if (ret) { 722 - EXOFS_DBGMSG("simple_write_begin faild\n"); 722 + EXOFS_DBGMSG("simple_write_begin failed\n"); 723 723 goto out; 724 724 } 725 725 ··· 732 732 if (ret) { 733 733 /*SetPageError was done by _readpage. Is it ok?*/ 734 734 unlock_page(page); 735 - EXOFS_DBGMSG("__readpage_filler faild\n"); 735 + EXOFS_DBGMSG("__readpage_filler failed\n"); 736 736 } 737 737 } 738 738 out: ··· 1095 1095 atomic_dec(&sbi->s_curr_pending); 1096 1096 1097 1097 if (unlikely(ret)) { 1098 - EXOFS_ERR("object=0x%llx creation faild in pid=0x%llx", 1098 + EXOFS_ERR("object=0x%llx creation failed in pid=0x%llx", 1099 1099 _LLU(exofs_oi_objno(oi)), _LLU(sbi->layout.s_pid)); 1100 1100 /*TODO: When FS is corrupted creation can fail, object already 1101 1101 * exist. Get rid of this asynchronous creation, if exist ··· 1215 1215 1216 1216 args = kzalloc(sizeof(*args), GFP_KERNEL); 1217 1217 if (!args) { 1218 - EXOFS_DBGMSG("Faild kzalloc of args\n"); 1218 + EXOFS_DBGMSG("Failed kzalloc of args\n"); 1219 1219 return -ENOMEM; 1220 1220 } 1221 1221
+5 -5
fs/exofs/ios.c
··· 55 55 56 56 ret = osd_finalize_request(or, 0, cred, NULL); 57 57 if (unlikely(ret)) { 58 - EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n", ret); 58 + EXOFS_DBGMSG("Failed to osd_finalize_request() => %d\n", ret); 59 59 goto out; 60 60 } 61 61 ··· 79 79 */ 80 80 ios = kzalloc(exofs_io_state_size(layout->s_numdevs), GFP_KERNEL); 81 81 if (unlikely(!ios)) { 82 - EXOFS_DBGMSG("Faild kzalloc bytes=%d\n", 82 + EXOFS_DBGMSG("Failed kzalloc bytes=%d\n", 83 83 exofs_io_state_size(layout->s_numdevs)); 84 84 *pios = NULL; 85 85 return -ENOMEM; ··· 172 172 173 173 ret = osd_finalize_request(or, 0, ios->cred, NULL); 174 174 if (unlikely(ret)) { 175 - EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n", 175 + EXOFS_DBGMSG("Failed to osd_finalize_request() => %d\n", 176 176 ret); 177 177 return ret; 178 178 } ··· 361 361 362 362 per_dev->bio = bio_kmalloc(GFP_KERNEL, bio_size); 363 363 if (unlikely(!per_dev->bio)) { 364 - EXOFS_DBGMSG("Faild to allocate BIO size=%u\n", 364 + EXOFS_DBGMSG("Failed to allocate BIO size=%u\n", 365 365 bio_size); 366 366 return -ENOMEM; 367 367 } ··· 564 564 master_dev->bio->bi_max_vecs); 565 565 if (unlikely(!bio)) { 566 566 EXOFS_DBGMSG( 567 - "Faild to allocate BIO size=%u\n", 567 + "Failed to allocate BIO size=%u\n", 568 568 master_dev->bio->bi_max_vecs); 569 569 ret = -ENOMEM; 570 570 goto out;
+2 -2
fs/ext2/inode.c
··· 458 458 * the same format as ext2_get_branch() would do. We are calling it after 459 459 * we had read the existing part of chain and partial points to the last 460 460 * triple of that (one with zero ->key). Upon the exit we have the same 461 - * picture as after the successful ext2_get_block(), excpet that in one 461 + * picture as after the successful ext2_get_block(), except that in one 462 462 * place chain is disconnected - *branch->p is still zero (we did not 463 463 * set the last link), but branch->key contains the number that should 464 464 * be placed into *branch->p to fill that gap. ··· 662 662 mutex_lock(&ei->truncate_mutex); 663 663 /* 664 664 * If the indirect block is missing while we are reading 665 - * the chain(ext3_get_branch() returns -EAGAIN err), or 665 + * the chain(ext2_get_branch() returns -EAGAIN err), or 666 666 * if the chain has been changed after we grab the semaphore, 667 667 * (either because another process truncated this branch, or 668 668 * another get_block allocated this branch) re-grab the chain to see if
+1 -6
fs/hostfs/hostfs.h
··· 28 28 * #define ATTR_KILL_SUID 2048 29 29 * #define ATTR_KILL_SGID 4096 30 30 * 31 - * and this is because they were added in 2.5 development in this patch: 32 - * 33 - * http://linux.bkbits.net:8080/linux-2.5/ 34 - * cset@3caf4a12k4XgDzK7wyK-TGpSZ9u2Ww?nav=index.html 35 - * |src/.|src/include|src/include/linux|related/include/linux/fs.h 36 - * 31 + * and this is because they were added in 2.5 development. 37 32 * Actually, they are not needed by most ->setattr() methods - they are set by 38 33 * callers of notify_change() to notify that the setuid/setgid bits must be 39 34 * dropped.
+2 -4
fs/jfs/jfs_logmgr.c
··· 1010 1010 * option 2 - shutdown file systems 1011 1011 * associated with log ? 1012 1012 * option 3 - extend log ? 1013 - */ 1014 - /* 1015 1013 * option 4 - second chance 1016 1014 * 1017 1015 * mark log wrapped, and continue. 1018 1016 * when all active transactions are completed, 1019 - * mark log vaild for recovery. 1017 + * mark log valid for recovery. 1020 1018 * if crashed during invalid state, log state 1021 - * implies invald log, forcing fsck(). 1019 + * implies invalid log, forcing fsck(). 1022 1020 */ 1023 1021 /* mark log state log wrap in log superblock */ 1024 1022 /* log->state = LOGWRAP; */
+2 -2
fs/jfs/jfs_mount.c
··· 97 97 98 98 ipaimap = diReadSpecial(sb, AGGREGATE_I, 0); 99 99 if (ipaimap == NULL) { 100 - jfs_err("jfs_mount: Faild to read AGGREGATE_I"); 100 + jfs_err("jfs_mount: Failed to read AGGREGATE_I"); 101 101 rc = -EIO; 102 102 goto errout20; 103 103 } ··· 148 148 if ((sbi->mntflag & JFS_BAD_SAIT) == 0) { 149 149 ipaimap2 = diReadSpecial(sb, AGGREGATE_I, 1); 150 150 if (!ipaimap2) { 151 - jfs_err("jfs_mount: Faild to read AGGREGATE_I"); 151 + jfs_err("jfs_mount: Failed to read AGGREGATE_I"); 152 152 rc = -EIO; 153 153 goto errout35; 154 154 }
+1 -1
fs/ocfs2/cluster/tcp_internal.h
··· 129 129 130 130 struct o2net_sock_container { 131 131 struct kref sc_kref; 132 - /* the next two are vaild for the life time of the sc */ 132 + /* the next two are valid for the life time of the sc */ 133 133 struct socket *sc_sock; 134 134 struct o2nm_node *sc_node; 135 135
+1 -1
fs/partitions/ldm.c
··· 5 5 * Copyright (c) 2001-2007 Anton Altaparmakov 6 6 * Copyright (C) 2001,2002 Jakob Kemi <jakob.kemi@telia.com> 7 7 * 8 - * Documentation is available at http://www.linux-ntfs.org/content/view/19/37/ 8 + * Documentation is available at http://www.linux-ntfs.org/doku.php?id=downloads 9 9 * 10 10 * This program is free software; you can redistribute it and/or modify it under 11 11 * the terms of the GNU General Public License as published by the Free Software
+1 -1
fs/partitions/ldm.h
··· 5 5 * Copyright (c) 2001-2007 Anton Altaparmakov 6 6 * Copyright (C) 2001,2002 Jakob Kemi <jakob.kemi@telia.com> 7 7 * 8 - * Documentation is available at http://www.linux-ntfs.org/content/view/19/37/ 8 + * Documentation is available at http://www.linux-ntfs.org/doku.php?id=downloads 9 9 * 10 10 * This program is free software; you can redistribute it and/or modify it 11 11 * under the terms of the GNU General Public License as published by the Free
+4 -2
fs/reiserfs/Kconfig
··· 10 10 11 11 In general, ReiserFS is as fast as ext2, but is very efficient with 12 12 large directories and small files. Additional patches are needed 13 - for NFS and quotas, please see <http://www.namesys.com/> for links. 13 + for NFS and quotas, please see 14 + <https://reiser4.wiki.kernel.org/index.php/Main_Page> for links. 14 15 15 16 It is more easily extended to have features currently found in 16 17 database and keyword search systems than block allocation based file ··· 19 18 plugins consistent with our motto ``It takes more than a license to 20 19 make source code open.'' 21 20 22 - Read <http://www.namesys.com/> to learn more about reiserfs. 21 + Read <https://reiser4.wiki.kernel.org/index.php/Main_Page> 22 + to learn more about reiserfs. 23 23 24 24 Sponsored by Threshold Networks, Emusic.com, and Bigstorage.com. 25 25
+1 -1
fs/reiserfs/README
··· 43 43 [END LICENSING] 44 44 45 45 Reiserfs is a file system based on balanced tree algorithms, which is 46 - described at http://devlinux.com/namesys. 46 + described at https://reiser4.wiki.kernel.org/index.php/Main_Page 47 47 48 48 Stop reading here. Go there, then return. 49 49
+3 -3
fs/seq_file.c
··· 131 131 */ 132 132 ssize_t seq_read(struct file *file, char __user *buf, size_t size, loff_t *ppos) 133 133 { 134 - struct seq_file *m = (struct seq_file *)file->private_data; 134 + struct seq_file *m = file->private_data; 135 135 size_t copied = 0; 136 136 loff_t pos; 137 137 size_t n; ··· 280 280 */ 281 281 loff_t seq_lseek(struct file *file, loff_t offset, int origin) 282 282 { 283 - struct seq_file *m = (struct seq_file *)file->private_data; 283 + struct seq_file *m = file->private_data; 284 284 loff_t retval = -EINVAL; 285 285 286 286 mutex_lock(&m->lock); ··· 324 324 */ 325 325 int seq_release(struct inode *inode, struct file *file) 326 326 { 327 - struct seq_file *m = (struct seq_file *)file->private_data; 327 + struct seq_file *m = file->private_data; 328 328 kfree(m->buf); 329 329 kfree(m); 330 330 return 0;
+2 -2
include/crypto/gf128mul.h
··· 54 54 55 55 /* Comment by Rik: 56 56 * 57 - * For some background on GF(2^128) see for example: http://- 58 - * csrc.nist.gov/CryptoToolkit/modes/proposedmodes/gcm/gcm-revised-spec.pdf 57 + * For some background on GF(2^128) see for example: 58 + * http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/gcm-revised-spec.pdf 59 59 * 60 60 * The elements of GF(2^128) := GF(2)[X]/(X^128-X^7-X^2-X^1-1) can 61 61 * be mapped to computer memory in a variety of ways. Let's examine
+1 -1
include/linux/fdreg.h
··· 89 89 /* the following commands are new in the 82078. They are not used in the 90 90 * floppy driver, except the first three. These commands may be useful for apps 91 91 * which use the FDRAWCMD interface. For doc, get the 82078 spec sheets at 92 - * http://www-techdoc.intel.com/docs/periph/fd_contr/datasheets/ */ 92 + * http://www.intel.com/design/archives/periphrl/docs/29046803.htm */ 93 93 94 94 #define FD_PARTID 0x18 /* part id ("extended" version cmd) */ 95 95 #define FD_SAVE 0x2e /* save fdc regs for later restore */
+5 -2
include/linux/idr.h
··· 117 117 /* 118 118 * IDA - IDR based id allocator, use when translation from id to 119 119 * pointer isn't necessary. 120 + * 121 + * IDA_BITMAP_LONGS is calculated to be one less to accommodate 122 + * ida_bitmap->nr_busy so that the whole struct fits in 128 bytes. 120 123 */ 121 124 #define IDA_CHUNK_SIZE 128 /* 128 bytes per chunk */ 122 - #define IDA_BITMAP_LONGS (128 / sizeof(long) - 1) 123 - #define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8) 125 + #define IDA_BITMAP_LONGS (IDA_CHUNK_SIZE / sizeof(long) - 1) 126 + #define IDA_BITMAP_BITS (IDA_BITMAP_LONGS * sizeof(long) * 8) 124 127 125 128 struct ida_bitmap { 126 129 long nr_busy;
+1 -1
include/linux/if_infiniband.h
··· 5 5 * <http://www.fsf.org/copyleft/gpl.html>, or the OpenIB.org BSD 6 6 * license, available in the LICENSE.TXT file accompanying this 7 7 * software. These details are also available at 8 - * <http://openib.org/license.html>. 8 + * <http://www.openfabrics.org/software_license.htm>. 9 9 * 10 10 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 11 11 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+1 -1
include/linux/jhash.h
··· 116 116 /* A special ultra-optimized versions that knows they are hashing exactly 117 117 * 3, 2 or 1 word(s). 118 118 * 119 - * NOTE: In partilar the "c += length; __jhash_mix(a,b,c);" normally 119 + * NOTE: In particular the "c += length; __jhash_mix(a,b,c);" normally 120 120 * done at the end is not done here. 121 121 */ 122 122 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval)
-1
include/linux/n_r3964.h
··· 4 4 * Copyright by 5 5 * Philips Automation Projects 6 6 * Kassel (Germany) 7 - * http://www.pap-philips.de 8 7 * ----------------------------------------------------------- 9 8 * This software may be used and distributed according to the terms of 10 9 * the GNU General Public License, incorporated herein by reference.
+1 -1
include/video/vga.h
··· 5 5 * 6 6 * Copyright history from vga16fb.c: 7 7 * Copyright 1999 Ben Pfaff and Petr Vandrovec 8 - * Based on VGA info at http://www.goodnet.com/~tinara/FreeVGA/home.htm 8 + * Based on VGA info at http://www.osdever.net/FreeVGA/home.htm 9 9 * Based on VESA framebuffer (c) 1998 Gerd Knorr 10 10 * 11 11 * This file is subject to the terms and conditions of the GNU General
+1 -1
init/Kconfig
··· 186 186 depends on HAVE_KERNEL_LZO 187 187 help 188 188 Its compression ratio is the poorest among the 4. The kernel 189 - size is about about 10% bigger than gzip; however its speed 189 + size is about 10% bigger than gzip; however its speed 190 190 (both compression and decompression) is the fastest. 191 191 192 192 endchoice
+1 -1
kernel/pm_qos_params.c
··· 399 399 } else 400 400 return -EINVAL; 401 401 402 - pm_qos_req = (struct pm_qos_request_list *)filp->private_data; 402 + pm_qos_req = filp->private_data; 403 403 pm_qos_update_request(pm_qos_req, value); 404 404 405 405 return count;
+1 -1
kernel/trace/trace_kprobe.c
··· 648 648 } 649 649 ret = register_probe_event(tp); 650 650 if (ret) { 651 - pr_warning("Faild to register probe event(%d)\n", ret); 651 + pr_warning("Failed to register probe event(%d)\n", ret); 652 652 goto end; 653 653 } 654 654
+7 -6
lib/idr.c
··· 284 284 * idr_get_new_above - allocate new idr entry above or equal to a start id 285 285 * @idp: idr handle 286 286 * @ptr: pointer you want associated with the id 287 - * @start_id: id to start search at 287 + * @starting_id: id to start search at 288 288 * @id: pointer to the allocated handle 289 289 * 290 290 * This is the allocate id function. It should be called with any ··· 479 479 480 480 /** 481 481 * idr_destroy - release all cached layers within an idr tree 482 - * idp: idr handle 482 + * @idp: idr handle 483 483 */ 484 484 void idr_destroy(struct idr *idp) 485 485 { ··· 586 586 /** 587 587 * idr_get_next - lookup next object of id to given id. 588 588 * @idp: idr handle 589 - * @id: pointer to lookup key 589 + * @nextidp: pointer to lookup key 590 590 * 591 591 * Returns pointer to registered object with id, which is next number to 592 - * given id. 592 + * given id. After being looked up, *@nextidp will be updated for the next 593 + * iteration. 593 594 */ 594 595 595 596 void *idr_get_next(struct idr *idp, int *nextidp) ··· 759 758 /** 760 759 * ida_get_new_above - allocate new ID above or equal to a start id 761 760 * @ida: ida handle 762 - * @staring_id: id to start search at 761 + * @starting_id: id to start search at 763 762 * @p_id: pointer to the allocated handle 764 763 * 765 764 * Allocate new ID above or equal to @ida. It should be called with ··· 913 912 914 913 /** 915 914 * ida_destroy - release all cached layers within an ida tree 916 - * ida: ida handle 915 + * @ida: ida handle 917 916 */ 918 917 void ida_destroy(struct ida *ida) 919 918 {
+1 -1
mm/percpu.c
··· 31 31 * as small as 4 bytes. The allocator organizes chunks into lists 32 32 * according to free size and tries to allocate from the fullest one. 33 33 * Each chunk keeps the maximum contiguous area size hint which is 34 - * guaranteed to be eqaul to or larger than the maximum contiguous 34 + * guaranteed to be equal to or larger than the maximum contiguous 35 35 * area in the chunk. This helps the allocator not to iterate the 36 36 * chunk maps unnecessarily. 37 37 *
+2 -2
mm/vmscan.c
··· 79 79 int order; 80 80 81 81 /* 82 - * Intend to reclaim enough contenious memory rather than to reclaim 83 - * enough amount memory. I.e, it's the mode for high order allocation. 82 + * Intend to reclaim enough continuous memory rather than reclaim 83 + * enough amount of memory. i.e, mode for high order allocation. 84 84 */ 85 85 bool lumpy_reclaim_mode; 86 86
+4 -4
net/ax25/Kconfig
··· 7 7 bool "Amateur Radio support" 8 8 help 9 9 If you want to connect your Linux box to an amateur radio, answer Y 10 - here. You want to read <http://www.tapr.org/tapr/html/pkthome.html> 10 + here. You want to read <http://www.tapr.org/> 11 11 and more specifically about AX.25 on Linux 12 12 <http://www.linux-ax25.org/>. 13 13 ··· 42 42 check out the file <file:Documentation/networking/ax25.txt> in the 43 43 kernel source. More information about digital amateur radio in 44 44 general is on the WWW at 45 - <http://www.tapr.org/tapr/html/pkthome.html>. 45 + <http://www.tapr.org/>. 46 46 47 47 To compile this driver as a module, choose M here: the 48 48 module will be called ax25. ··· 89 89 <http://www.linux-ax25.org>. You also might want to check out the 90 90 file <file:Documentation/networking/ax25.txt>. More information about 91 91 digital amateur radio in general is on the WWW at 92 - <http://www.tapr.org/tapr/html/pkthome.html>. 92 + <http://www.tapr.org/>. 93 93 94 94 To compile this driver as a module, choose M here: the 95 95 module will be called netrom. ··· 108 108 <http://www.linux-ax25.org>. You also might want to check out the 109 109 file <file:Documentation/networking/ax25.txt>. More information about 110 110 digital amateur radio in general is on the WWW at 111 - <http://www.tapr.org/tapr/html/pkthome.html>. 111 + <http://www.tapr.org/>. 112 112 113 113 To compile this driver as a module, choose M here: the 114 114 module will be called rose.
+2 -2
net/ipv4/Kconfig
··· 84 84 85 85 An experimental study of compression methods for dynamic tries 86 86 Stefan Nilsson and Matti Tikkanen. Algorithmica, 33(1):19-33, 2002. 87 - http://www.nada.kth.se/~snilsson/public/papers/dyntrie2/ 87 + <http://www.csc.kth.se/~snilsson/software/dyntrie2/> 88 88 89 89 endchoice 90 90 ··· 562 562 distinguishing to circumvent the difficult judgment of the packet loss 563 563 type. TCP Veno cuts down less congestion window in response to random 564 564 loss packets. 565 - See http://www.ntu.edu.sg/home5/ZHOU0022/papers/CPFu03a.pdf 565 + See <http://ieeexplore.ieee.org/xpl/freeabs_all.jsp?arnumber=1177186> 566 566 567 567 config TCP_CONG_YEAH 568 568 tristate "YeAH TCP"
+1 -1
net/ipv4/cipso_ipv4.c
··· 9 9 * 10 10 * The CIPSO draft specification can be found in the kernel's Documentation 11 11 * directory as well as the following URL: 12 - * http://netlabel.sourceforge.net/files/draft-ietf-cipso-ipsecurity-01.txt 12 + * http://tools.ietf.org/id/draft-ietf-cipso-ipsecurity-01.txt 13 13 * The FIPS-188 specification can be found at the following URL: 14 14 * http://www.itl.nist.gov/fipspubs/fip188.htm 15 15 *
+1 -1
net/ipv4/fib_trie.c
··· 16 16 * 17 17 * An experimental study of compression methods for dynamic tries 18 18 * Stefan Nilsson and Matti Tikkanen. Algorithmica, 33(1):19-33, 2002. 19 - * http://www.nada.kth.se/~snilsson/public/papers/dyntrie2/ 19 + * http://www.csc.kth.se/~snilsson/software/dyntrie2/ 20 20 * 21 21 * 22 22 * IP-address lookup using LC-tries. Stefan Nilsson and Gunnar Karlsson
+1 -1
net/ipv4/netfilter/Kconfig
··· 147 147 which can only be viewed through syslog. 148 148 149 149 The appropriate userspace logging daemon (ulogd) may be obtained from 150 - <http://www.gnumonks.org/projects/ulogd/> 150 + <http://www.netfilter.org/projects/ulogd/index.html> 151 151 152 152 To compile it as a module, choose M here. If unsure, say N. 153 153
+1 -1
net/ipv4/tcp_illinois.c
··· 6 6 * The algorithm is described in: 7 7 * "TCP-Illinois: A Loss and Delay-Based Congestion Control Algorithm 8 8 * for High-Speed Networks" 9 - * http://www.ews.uiuc.edu/~shaoliu/papersandslides/liubassri06perf.pdf 9 + * http://www.ifp.illinois.edu/~srikant/Papers/liubassri06perf.pdf 10 10 * 11 11 * Implemented from description in paper and ns-2 simulation. 12 12 * Copyright (C) 2007 Stephen Hemminger <shemminger@linux-foundation.org>
+2 -2
net/ipv4/tcp_input.c
··· 428 428 * 429 429 * The algorithm for RTT estimation w/o timestamps is based on 430 430 * Dynamic Right-Sizing (DRS) by Wu Feng and Mike Fisk of LANL. 431 - * <http://www.lanl.gov/radiant/website/pubs/drs/lacsi2001.ps> 431 + * <http://public.lanl.gov/radiant/pubs.html#DRS> 432 432 * 433 433 * More detail on this code can be found at 434 - * <http://www.psc.edu/~jheffner/senior_thesis.ps>, 434 + * <http://staff.psc.edu/jheffner/>, 435 435 * though this reference is out of date. A new paper 436 436 * is pending. 437 437 */
+1 -1
net/ipv4/tcp_veno.c
··· 6 6 * "TCP Veno: TCP Enhancement for Transmission over Wireless Access Networks." 7 7 * IEEE Journal on Selected Areas in Communication, 8 8 * Feb. 2003. 9 - * See http://www.ntu.edu.sg/home5/ZHOU0022/papers/CPFu03a.pdf 9 + * See http://www.ie.cuhk.edu.hk/fileadmin/staff_upload/soung/Journal/J3.pdf 10 10 */ 11 11 12 12 #include <linux/mm.h>
+1 -1
net/irda/irnet/irnet_ppp.c
··· 664 664 if((val == N_SYNC_PPP) || (val == N_PPP)) 665 665 { 666 666 DEBUG(FS_INFO, "Entering PPP discipline.\n"); 667 - /* PPP channel setup (ap->chan in configued in dev_irnet_open())*/ 667 + /* PPP channel setup (ap->chan in configured in dev_irnet_open())*/ 668 668 if (mutex_lock_interruptible(&ap->lock)) 669 669 return -EINTR; 670 670
+1 -1
net/mac80211/mesh.h
··· 115 115 * @hash_rnd: random value used for hash computations 116 116 * @entries: number of entries in the table 117 117 * @free_node: function to free nodes of the table 118 - * @copy_node: fuction to copy nodes of the table 118 + * @copy_node: function to copy nodes of the table 119 119 * @size_order: determines size of the table, there will be 2^size_order hash 120 120 * buckets 121 121 * @mean_chain_len: maximum average length for the hash buckets' list, if it is
+2 -2
net/netfilter/nf_conntrack_proto_tcp.c
··· 329 329 /* TCP connection tracking based on 'Real Stateful TCP Packet Filtering 330 330 in IP Filter' by Guido van Rooij. 331 331 332 - http://www.nluug.nl/events/sane2000/papers.html 333 - http://www.iae.nl/users/guido/papers/tcp_filtering.ps.gz 332 + http://www.sane.nl/events/sane2000/papers.html 333 + http://www.darkart.com/mirrors/www.obfuscation.org/ipf/ 334 334 335 335 The boundaries and the conditions are changed according to RFC793: 336 336 the packet must intersect the window (i.e. segments may be
+2 -2
net/sunrpc/rpc_pipe.c
··· 203 203 mutex_lock(&inode->i_mutex); 204 204 if (rpci->ops == NULL) 205 205 goto out; 206 - msg = (struct rpc_pipe_msg *)filp->private_data; 206 + msg = filp->private_data; 207 207 if (msg != NULL) { 208 208 spin_lock(&inode->i_lock); 209 209 msg->errno = -EAGAIN; ··· 325 325 len = rpci->pipelen; 326 326 if (filp->private_data) { 327 327 struct rpc_pipe_msg *msg; 328 - msg = (struct rpc_pipe_msg *)filp->private_data; 328 + msg = filp->private_data; 329 329 len += msg->len - msg->copied; 330 330 } 331 331 spin_unlock(&inode->i_lock);
+2 -2
net/wanrouter/wanmain.c
··· 471 471 data = vmalloc(conf->data_size); 472 472 if (!data) { 473 473 printk(KERN_INFO 474 - "%s: ERROR, Faild allocate kernel memory !\n", 474 + "%s: ERROR, Failed allocate kernel memory !\n", 475 475 wandev->name); 476 476 kfree(conf); 477 477 return -ENOBUFS; ··· 481 481 err = wandev->setup(wandev, conf); 482 482 } else { 483 483 printk(KERN_INFO 484 - "%s: ERROR, Faild to copy from user data !\n", 484 + "%s: ERROR, Failed to copy from user data !\n", 485 485 wandev->name); 486 486 err = -EFAULT; 487 487 }
+2 -5
sound/oss/ac97_codec.c
··· 21 21 * 22 22 ************************************************************************** 23 23 * 24 - * The Intel Audio Codec '97 specification is available at the Intel 25 - * audio homepage: http://developer.intel.com/ial/scalableplatforms/audio/ 26 - * 27 - * The specification itself is currently available at: 28 - * ftp://download.intel.com/ial/scalableplatforms/ac97r22.pdf 24 + * The Intel Audio Codec '97 specification is available at: 25 + * http://download.intel.com/support/motherboards/desktop/sb/ac97_r23.pdf 29 26 * 30 27 ************************************************************************** 31 28 *
+1 -1
sound/pci/ens1370.c
··· 22 22 /* Power-Management-Code ( CONFIG_PM ) 23 23 * for ens1371 only ( FIXME ) 24 24 * derived from cs4281.c, atiixp.c and via82xx.c 25 - * using http://www.alsa-project.org/~iwai/writing-an-alsa-driver/c1540.htm 25 + * using http://www.alsa-project.org/~tiwai/writing-an-alsa-driver/ 26 26 * by Kurt J. Bosch 27 27 */ 28 28
+1 -1
sound/pci/intel8x0.c
··· 716 716 * Intel 82443MX running a 100MHz processor system bus has a hardware bug, 717 717 * which aborts PCI busmaster for audio transfer. A workaround is to set 718 718 * the pages as non-cached. For details, see the errata in 719 - * http://www.intel.com/design/chipsets/specupdt/245051.htm 719 + * http://download.intel.com/design/chipsets/specupdt/24505108.pdf 720 720 */ 721 721 static void fill_nocache(void *buf, int size, int nocache) 722 722 {
+1 -1
sound/soc/s3c24xx/neo1973_gta02_wm8753.c
··· 182 182 if (ret < 0) 183 183 return ret; 184 184 185 - /* configue and enable PLL for 12.288MHz output */ 185 + /* configure and enable PLL for 12.288MHz output */ 186 186 ret = snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, 187 187 iis_clkrate / 4, 12288000); 188 188 if (ret < 0)
+1 -1
sound/soc/s3c24xx/neo1973_wm8753.c
··· 201 201 if (ret < 0) 202 202 return ret; 203 203 204 - /* configue and enable PLL for 12.288MHz output */ 204 + /* configure and enable PLL for 12.288MHz output */ 205 205 ret = snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, 206 206 iis_clkrate / 4, 12288000); 207 207 if (ret < 0)
+1 -1
usr/Kconfig
··· 144 144 depends on RD_LZO 145 145 help 146 146 Its compression ratio is the poorest among the four. The kernel 147 - size is about about 10% bigger than gzip; however its speed 147 + size is about 10% bigger than gzip; however its speed 148 148 (both compression and decompression) is the fastest. 149 149 150 150 endchoice