Skip to content

Commit edb3502

Browse files
author
Ingo Molnar
committed
Merge branches 'irq/genirq' and 'linus' into irq/core
3 parents 8f8573a + cb065c0 + 5bee17f commit edb3502

File tree

1,009 files changed

+23227
-8599
lines changed

Some content is hidden

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

1,009 files changed

+23227
-8599
lines changed

CREDITS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2166,7 +2166,6 @@ D: Initial implementation of VC's, pty's and select()
21662166

21672167
N: Pavel Machek
21682168
2169-
21702169
D: Softcursor for vga, hypertech cdrom support, vcsa bugfix, nbd
21712170
D: sun4/330 port, capabilities for elf, speedup for rm on ext2, USB,
21722171
D: work on suspend-to-ram/disk, killing duplicates from ioctl32

Documentation/ABI/testing/sysfs-bus-pci

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
What: /sys/bus/pci/drivers/.../bind
2+
Date: December 2003
3+
4+
Description:
5+
Writing a device location to this file will cause
6+
the driver to attempt to bind to the device found at
7+
this location. This is useful for overriding default
8+
bindings. The format for the location is: DDDD:BB:DD.F.
9+
That is Domain:Bus:Device.Function and is the same as
10+
found in /sys/bus/pci/devices/. For example:
11+
# echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/bind
12+
(Note: kernels before 2.6.28 may require echo -n).
13+
14+
What: /sys/bus/pci/drivers/.../unbind
15+
Date: December 2003
16+
17+
Description:
18+
Writing a device location to this file will cause the
19+
driver to attempt to unbind from the device found at
20+
this location. This may be useful when overriding default
21+
bindings. The format for the location is: DDDD:BB:DD.F.
22+
That is Domain:Bus:Device.Function and is the same as
23+
found in /sys/bus/pci/devices/. For example:
24+
# echo 0000:00:19.0 > /sys/bus/pci/drivers/foo/unbind
25+
(Note: kernels before 2.6.28 may require echo -n).
26+
27+
What: /sys/bus/pci/drivers/.../new_id
28+
Date: December 2003
29+
30+
Description:
31+
Writing a device ID to this file will attempt to
32+
dynamically add a new device ID to a PCI device driver.
33+
This may allow the driver to support more hardware than
34+
was included in the driver's static device ID support
35+
table at compile time. The format for the device ID is:
36+
VVVV DDDD SVVV SDDD CCCC MMMM PPPP. That is Vendor ID,
37+
Device ID, Subsystem Vendor ID, Subsystem Device ID,
38+
Class, Class Mask, and Private Driver Data. The Vendor ID
39+
and Device ID fields are required, the rest are optional.
40+
Upon successfully adding an ID, the driver will probe
41+
for the device and attempt to bind to it. For example:
42+
# echo "8086 10f5" > /sys/bus/pci/drivers/foo/new_id
43+
144
What: /sys/bus/pci/devices/.../vpd
245
Date: February 2008
346
Contact: Ben Hutchings <[email protected]>

Documentation/ABI/testing/sysfs-firmware-memmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
What: /sys/firmware/memmap/
22
Date: June 2008
3-
Contact: Bernhard Walle <bwalle@suse.de>
3+
Contact: Bernhard Walle <bernhard.walle@gmx.de>
44
Description:
55
On all platforms, the firmware provides a memory map which the
66
kernel reads. The resources from that memory map are registered

Documentation/DocBook/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# To add a new book the only step required is to add the book to the
77
# list of DOCBOOKS.
88

9-
DOCBOOKS := z8530book.xml mcabook.xml \
9+
DOCBOOKS := z8530book.xml mcabook.xml device-drivers.xml \
1010
kernel-hacking.xml kernel-locking.xml deviceiobook.xml \
1111
procfs-guide.xml writing_usb_driver.xml networking.xml \
1212
kernel-api.xml filesystems.xml lsm.xml usb.xml kgdb.xml \

0 commit comments

Comments
 (0)