Skip to content

Commit 28596c9

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
Pull "trivial tree" updates from Jiri Kosina: "Usual pile from trivial tree everyone is so eagerly waiting for" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits) Remove MN10300_PROC_MN2WS0038 mei: fix comments treewide: Fix typos in Kconfig kprobes: update jprobe_example.c for do_fork() change Documentation: change "&" to "and" in Documentation/applying-patches.txt Documentation: remove obsolete pcmcia-cs from Changes Documentation: update links in Changes Documentation: Docbook: Fix generated DocBook/kernel-api.xml score: Remove GENERIC_HAS_IOMAP gpio: fix 'CONFIG_GPIO_IRQCHIP' comments tty: doc: Fix grammar in serial/tty dma-debug: modify check_for_stack output treewide: fix errors in printk genirq: fix reference in devm_request_threaded_irq comment treewide: fix synchronize_rcu() in comments checkstack.pl: port to AArch64 doc: queue-sysfs: minor fixes init/do_mounts: better syntax description MIPS: fix comment spelling powerpc/simpleboot: fix comment ...
2 parents b6420eb + 7bb38d5 commit 28596c9

File tree

92 files changed

+125
-135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+125
-135
lines changed

Documentation/ABI/testing/sysfs-class-net

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Description:
159159
lower-level interface protocol used. Ethernet devices will show
160160
a 'mtu' attribute value of 1500 unless changed.
161161

162-
What: /sys/calss/net/<iface>/netdev_group
162+
What: /sys/class/net/<iface>/netdev_group
163163
Date: January 2011
164164
KernelVersion: 2.6.39
165165

Documentation/Changes

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -167,18 +167,11 @@ later is recommended, due to some significant improvements).
167167
PCMCIAutils
168168
-----------
169169

170-
PCMCIAutils replaces pcmcia-cs (see below). It properly sets up
170+
PCMCIAutils replaces pcmcia-cs. It properly sets up
171171
PCMCIA sockets at system startup and loads the appropriate modules
172172
for 16-bit PCMCIA devices if the kernel is modularized and the hotplug
173173
subsystem is used.
174174

175-
Pcmcia-cs
176-
---------
177-
178-
PCMCIA (PC Card) support is now partially implemented in the main
179-
kernel source. The "pcmciautils" package (see above) replaces pcmcia-cs
180-
for newest kernels.
181-
182175
Quota-tools
183176
-----------
184177

@@ -341,37 +334,33 @@ Pcmciautils
341334
-----------
342335
o <ftp://ftp.kernel.org/pub/linux/utils/kernel/pcmcia/>
343336

344-
Pcmcia-cs
345-
---------
346-
o <http://pcmcia-cs.sourceforge.net/>
347-
348337
Quota-tools
349338
----------
350339
o <http://sourceforge.net/projects/linuxquota/>
351340

352341
DocBook Stylesheets
353342
-------------------
354-
o <http://nwalsh.com/docbook/dsssl/>
343+
o <http://sourceforge.net/projects/docbook/files/docbook-dsssl/>
355344

356345
XMLTO XSLT Frontend
357346
-------------------
358347
o <http://cyberelk.net/tim/xmlto/>
359348

360349
Intel P6 microcode
361350
------------------
362-
o <http://www.urbanmyth.org/microcode/>
351+
o <https://downloadcenter.intel.com/>
363352

364353
udev
365354
----
366-
o <http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html>
355+
o <http://www.freedesktop.org/software/systemd/man/udev.html>
367356

368357
FUSE
369358
----
370359
o <http://sourceforge.net/projects/fuse>
371360

372361
mcelog
373362
------
374-
o <ftp://ftp.kernel.org/pub/linux/utils/cpu/mce/>
363+
o <http://www.mcelog.org/>
375364

376365
Networking
377366
**********

Documentation/CodingStyle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ the ones already enabled by DEBUG.
675675
Many subsystems have Kconfig debug options to turn on -DDEBUG in the
676676
corresponding Makefile; in other cases specific files #define DEBUG. And
677677
when a debug message should be unconditionally printed, such as if it is
678-
already inside a debug-related #ifdef secton, printk(KERN_DEBUG ...) can be
678+
already inside a debug-related #ifdef section, printk(KERN_DEBUG ...) can be
679679
used.
680680

681681

Documentation/applying-patches.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Common errors when patching
9494
---
9595
When patch applies a patch file it attempts to verify the sanity of the
9696
file in different ways.
97-
Checking that the file looks like a valid patch file & checking the code
97+
Checking that the file looks like a valid patch file and checking the code
9898
around the bits being modified matches the context provided in the patch are
9999
just two of the basic sanity checks patch does.
100100

Documentation/block/null_blk.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ nr_devices=[Number of devices]: Default: 2
4242
Number of block devices instantiated. They are instantiated as /dev/nullb0,
4343
etc.
4444

45-
irq_mode=[0-2]: Default: 1-Soft-irq
45+
irqmode=[0-2]: Default: 1-Soft-irq
4646
The completion mode used for completing IOs to the block-layer.
4747

4848
0: None.
@@ -53,7 +53,7 @@ irq_mode=[0-2]: Default: 1-Soft-irq
5353
completion.
5454

5555
completion_nsec=[ns]: Default: 10.000ns
56-
Combined with irq_mode=2 (timer). The time each completion event must wait.
56+
Combined with irqmode=2 (timer). The time each completion event must wait.
5757

5858
submit_queues=[0..nr_cpus]:
5959
The number of submission queues attached to the device driver. If unset, it

Documentation/block/queue-sysfs.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ read-write.
1111

1212
add_random (RW)
1313
----------------
14-
This file allows to trun off the disk entropy contribution. Default
14+
This file allows to turn off the disk entropy contribution. Default
1515
value of this file is '1'(on).
1616

1717
discard_granularity (RO)
@@ -72,7 +72,7 @@ Maximum segment size of the device.
7272

7373
minimum_io_size (RO)
7474
--------------------
75-
This is the smallest preferred io size reported by the device.
75+
This is the smallest preferred IO size reported by the device.
7676

7777
nomerges (RW)
7878
-------------
@@ -98,7 +98,7 @@ regulated by nr_requests.
9898

9999
optimal_io_size (RO)
100100
--------------------
101-
This is the optimal io size reported by the device.
101+
This is the optimal IO size reported by the device.
102102

103103
physical_block_size (RO)
104104
------------------------

Documentation/devicetree/bindings/clock/arm-integrator.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Clock bindings for ARM Integrator and Versatile Core Module clocks
22

3-
Auxilary Oscillator Clock
3+
Auxiliary Oscillator Clock
44

55
This is a configurable clock fed from a 24 MHz chrystal,
66
used for generating e.g. video clocks. It is located on the

Documentation/devicetree/bindings/crypto/fsl-sec6.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SEC 6 is as Freescale's Cryptographic Accelerator and Assurance Module (CAAM).
2-
Currently Freescale powerpc chip C29X is embeded with SEC 6.
2+
Currently Freescale powerpc chip C29X is embedded with SEC 6.
33
SEC 6 device tree binding include:
44
-SEC 6 Node
55
-Job Ring Node

Documentation/devicetree/bindings/iio/adc/vf610-adc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Required properties:
99
- interrupts: Should contain the interrupt for the device
1010
- clocks: The clock is needed by the ADC controller, ADC clock source is ipg clock.
1111
- clock-names: Must contain "adc", matching entry in the clocks property.
12-
- vref-supply: The regulator supply ADC refrence voltage.
12+
- vref-supply: The regulator supply ADC reference voltage.
1313

1414
Example:
1515
adc0: adc@4003b000 {

Documentation/devicetree/bindings/mfd/s2mps11.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ sub-node should be of the format as listed below.
4747

4848
regulator-ramp-delay for BUCKs = [6250/12500/25000(default)/50000] uV/us
4949

50-
BUCK[2/3/4/6] supports disabling ramp delay on hardware, so explictly
50+
BUCK[2/3/4/6] supports disabling ramp delay on hardware, so explicitly
5151
regulator-ramp-delay = <0> can be used for them to disable ramp delay.
5252
In the absence of the regulator-ramp-delay property, the default ramp
5353
delay will be used.

Documentation/devicetree/bindings/mtd/gpmc-nand.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ on various other factors also like;
110110
Other factor which governs the selection of ecc-scheme is oob-size.
111111
Higher ECC schemes require more OOB/Spare area to store ECC syndrome,
112112
so the device should have enough free bytes available its OOB/Spare
113-
area to accomodate ECC for entire page. In general following expression
114-
helps in determining if given device can accomodate ECC syndrome:
113+
area to accommodate ECC for entire page. In general following expression
114+
helps in determining if given device can accommodate ECC syndrome:
115115
"2 + (PAGESIZE / 512) * ECC_BYTES" >= OOBSIZE"
116116
where
117117
OOBSIZE number of bytes in OOB/spare area
@@ -133,5 +133,5 @@ on various other factors also like;
133133
Example(b): For a device with PAGESIZE = 2048 and OOBSIZE = 128 and
134134
trying to use BCH16 (ECC_BYTES=26) ecc-scheme.
135135
Number of ECC bytes per page = (2 + (2048 / 512) * 26) = 106 B
136-
which can be accomodate in the OOB/Spare area of this device
136+
which can be accommodated in the OOB/Spare area of this device
137137
(OOBSIZE=128). So this device can use BCH16 ecc-scheme.

Documentation/devicetree/bindings/net/samsung-sxgbe.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Required properties:
1717
- samsung,pbl: Integer, Programmable Burst Length.
1818
Supported values are 1, 2, 4, 8, 16, or 32.
1919
- samsung,burst-map: Integer, Program the possible bursts supported by sxgbe
20-
This is an interger and represents allowable DMA bursts when fixed burst.
20+
This is an integer and represents allowable DMA bursts when fixed burst.
2121
Allowable range is 0x01-0x3F. When this field is set fixed burst is enabled.
2222
When fixed length is needed for burst mode, it can be set within allowable
2323
range.

Documentation/devicetree/bindings/net/stmmac.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ Examples:
5858
snps,multicast-filter-bins = <256>;
5959
snps,perfect-filter-entries = <128>;
6060
clocks = <&clock>;
61-
clock-names = "stmmaceth">;
61+
clock-names = "stmmaceth";
6262
};

Documentation/devicetree/bindings/pci/host-generic-pci.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ For CAM, this 24-bit offset is:
5555
cfg_offset(bus, device, function, register) =
5656
bus << 16 | device << 11 | function << 8 | register
5757

58-
Whilst ECAM extends this by 4 bits to accomodate 4k of function space:
58+
Whilst ECAM extends this by 4 bits to accommodate 4k of function space:
5959

6060
cfg_offset(bus, device, function, register) =
6161
bus << 20 | device << 15 | function << 12 | register

Documentation/devicetree/bindings/phy/phy-bindings.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ phys: phy {
2727
};
2828

2929
That node describes an IP block (PHY provider) that implements 2 different PHYs.
30-
In order to differentiate between these 2 PHYs, an additonal specifier should be
30+
In order to differentiate between these 2 PHYs, an additional specifier should be
3131
given while trying to get a reference to it.
3232

3333
PHY user node

Documentation/devicetree/bindings/power_supply/charger-manager.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Optional properties :
2424
- cm-thermal-zone : name of external thermometer's thermal zone
2525
- cm-battery-* : threshold battery temperature for charging
2626
-cold : critical cold temperature of battery for charging
27-
-cold-in-minus : flag that cold temerature is in minus degree
27+
-cold-in-minus : flag that cold temperature is in minus degrees
2828
-hot : critical hot temperature of battery for charging
2929
-temp-diff : temperature difference to allow recharging
3030
- cm-dis/charging-max = limits of charging duration

Documentation/devicetree/bindings/sound/st,sta350.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Optional properties:
3333
0: Channel 1
3434
1: Channel 2
3535
2: Channel 3
36-
If parameter is missing, channel 1 is choosen.
36+
If parameter is missing, channel 1 is chosen.
3737
This properties have to be specified as '/bits/ 8' values.
3838

3939
- st,thermal-warning-recover:

Documentation/devicetree/bindings/vendor-prefixes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ tlm Trusted Logic Mobility
140140
toradex Toradex AG
141141
toshiba Toshiba Corporation
142142
toumaz Toumaz
143-
usi Universal Scientifc Industrial Co., Ltd.
143+
usi Universal Scientific Industrial Co., Ltd.
144144
v3 V3 Semiconductor
145145
variscite Variscite Ltd.
146146
via VIA Technologies, Inc.

Documentation/devicetree/bindings/video/atmel,lcdc.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ Atmel LCDC Display
3939
-----------------------------------------------------
4040
Required properties (as per of_videomode_helper):
4141

42-
- atmel,dmacon: dma controler configuration
43-
- atmel,lcdcon2: lcd controler configuration
42+
- atmel,dmacon: dma controller configuration
43+
- atmel,lcdcon2: lcd controller configuration
4444
- atmel,guard-time: lcd guard time (Delay in frame periods)
4545
- bits-per-pixel: lcd panel bit-depth.
4646

Documentation/devicetree/bindings/video/fsl,imx-fb.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Optional properties:
2020
register is not modified as recommended by the datasheet.
2121
- fsl,lpccr: Contrast Control Register value. This property provides the
2222
default value for the contrast control register.
23-
If that property is ommited, the register is zeroed.
23+
If that property is omitted, the register is zeroed.
2424
- fsl,lscr1: LCDC Sharp Configuration Register value.
2525

2626
Example:

Documentation/kmemleak.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Then as usual to get your report with:
122122
Freeing kmemleak internal objects
123123
---------------------------------
124124

125-
To allow access to previosuly found memory leaks after kmemleak has been
125+
To allow access to previously found memory leaks after kmemleak has been
126126
disabled by the user or due to an fatal error, internal kmemleak objects
127127
won't be freed when kmemleak is disabled, and those objects may occupy
128128
a large part of physical memory.

Documentation/lockup-watchdogs.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ stack trace is displayed upon detection and, by default, the system
1212
will stay locked up. Alternatively, the kernel can be configured to
1313
panic; a sysctl, "kernel.softlockup_panic", a kernel parameter,
1414
"softlockup_panic" (see "Documentation/kernel-parameters.txt" for
15-
details), and a compile option, "BOOTPARAM_HARDLOCKUP_PANIC", are
15+
details), and a compile option, "BOOTPARAM_SOFTLOCKUP_PANIC", are
1616
provided for this.
1717

1818
A 'hardlockup' is defined as a bug that causes the CPU to loop in

Documentation/mips/AU1xxx_IDE.README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ README for MIPS AU1XXX IDE driver - Released 2005-07-15
22

33
ABOUT
44
-----
5-
This file describes the 'drivers/ide/mips/au1xxx-ide.c', related files and the
5+
This file describes the 'drivers/ide/au1xxx-ide.c', related files and the
66
services they provide.
77

88
If you are short in patience and just want to know how to add your hard disc to

Documentation/serial/serial-rs485.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,5 @@
132132

133133
5. REFERENCES
134134

135-
[1] include/linux/serial.h
135+
[1] include/uapi/linux/serial.h
136136
[2] Documentation/devicetree/bindings/serial/rs485.txt

Documentation/serial/tty.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ set_termios() Notify the tty driver that the device's termios
146146
driver function is responsible for modifying any
147147
bits in the request it cannot fulfill to indicate
148148
the actual modes being used. A device with no
149-
hardware capability for change (eg a USB dongle or
149+
hardware capability for change (e.g. a USB dongle or
150150
virtual port) can provide NULL for this method.
151151

152152
throttle() Notify the tty driver that input buffers for the
@@ -258,7 +258,7 @@ put_char() - Stuff a single character onto the queue. The
258258

259259
flush_chars() - Ask the kernel to write put_char queue
260260

261-
write_room() - Return the number of characters tht can be stuffed
261+
write_room() - Return the number of characters that can be stuffed
262262
into the port buffers without overflow (or less).
263263
The ldisc is responsible for being intelligent
264264
about multi-threading of write_room/write calls

arch/blackfin/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ config TICKSOURCE_CORETMR
671671
default y
672672
endmenu
673673

674-
menu "Clock souce"
674+
menu "Clock source"
675675
depends on GENERIC_CLOCKEVENTS
676676
config CYCLES_CLOCKSOURCE
677677
bool "CYCLES"

arch/blackfin/mach-common/ints-priority.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ void handle_sec_sci_fault(uint32_t gstat)
455455
printk(KERN_DEBUG "sec ack err\n");
456456
break;
457457
default:
458-
printk(KERN_DEBUG "sec sci unknow err\n");
458+
printk(KERN_DEBUG "sec sci unknown err\n");
459459
}
460460
}
461461

arch/m68k/Kconfig.devices

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ config ATARI_ETHERNEC
7373
ROM port. The driver works by polling instead of interrupts, so it
7474
is quite slow.
7575

76-
This driver also suppports the ethernet part of the NetUSBee ROM
76+
This driver also supports the ethernet part of the NetUSBee ROM
7777
port combined Ethernet/USB adapter.
7878

7979
To compile the actual ethernet driver, choose Y or M in for the NE2000

arch/mips/cavium-octeon/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
if CPU_CAVIUM_OCTEON
22

33
config CAVIUM_CN63XXP1
4-
bool "Enable CN63XXP1 errata worarounds"
4+
bool "Enable CN63XXP1 errata workarounds"
55
default "n"
66
help
77
The CN63XXP1 chip requires build time workarounds to

arch/mips/lantiq/falcon/sysctrl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ void __init ltq_soc_init(void)
221221
(request_mem_region(res_sys[2].start,
222222
resource_size(&res_sys[2]),
223223
res_sys[2].name) < 0))
224-
pr_err("Failed to request core reources");
224+
pr_err("Failed to request core resources");
225225

226226
status_membase = ioremap_nocache(res_status.start,
227227
resource_size(&res_status));

arch/mips/lantiq/xway/sysctrl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ void __init ltq_soc_init(void)
318318
res_cgu.name) < 0) ||
319319
(request_mem_region(res_ebu.start, resource_size(&res_ebu),
320320
res_ebu.name) < 0))
321-
pr_err("Failed to request core reources");
321+
pr_err("Failed to request core resources");
322322

323323
pmu_membase = ioremap_nocache(res_pmu.start, resource_size(&res_pmu));
324324
ltq_cgu_membase = ioremap_nocache(res_cgu.start,

arch/mips/pci/pci-lantiq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ static int ltq_pci_probe(struct platform_device *pdev)
218218
res_cfg = platform_get_resource(pdev, IORESOURCE_MEM, 0);
219219
res_bridge = platform_get_resource(pdev, IORESOURCE_MEM, 1);
220220
if (!res_cfg || !res_bridge) {
221-
dev_err(&pdev->dev, "missing memory reources\n");
221+
dev_err(&pdev->dev, "missing memory resources\n");
222222
return -EINVAL;
223223
}
224224

arch/mn10300/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ endmenu
181181
config SMP
182182
bool "Symmetric multi-processing support"
183183
default y
184-
depends on MN10300_PROC_MN2WS0038 || MN10300_PROC_MN2WS0050
184+
depends on MN10300_PROC_MN2WS0050
185185
---help---
186186
This enables support for systems with more than one CPU. If you have
187187
a system with only one CPU, say N. If you have a system with more

arch/powerpc/boot/simpleboot.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
6161
if (*reg++ != 0)
6262
fatal("Memory range is not based at address 0\n");
6363

64-
/* get the memsize and trucate it to under 4G on 32 bit machines */
64+
/* get the memsize and truncate it to under 4G on 32 bit machines */
6565
memsize64 = 0;
6666
for (i = 0; i < *ns; i++)
6767
memsize64 = (memsize64 << 32) | *reg++;

0 commit comments

Comments
 (0)