Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f20e3b5f authored by Russell King's avatar Russell King Committed by Russell King
Browse files

Merge branch 'for-rmk' of git://git.android.com/kernel into devel

parents bcbfe664 f030d7b6
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -66,6 +66,7 @@ Kenneth W Chen <kenneth.w.chen@intel.com>
Koushik <raghavendra.koushik@neterion.com>
Koushik <raghavendra.koushik@neterion.com>
Leonid I Ananiev <leonid.i.ananiev@intel.com>
Leonid I Ananiev <leonid.i.ananiev@intel.com>
Linas Vepstas <linas@austin.ibm.com>
Linas Vepstas <linas@austin.ibm.com>
Mark Brown <broonie@sirena.org.uk>
Matthieu CASTET <castet.matthieu@free.fr>
Matthieu CASTET <castet.matthieu@free.fr>
Michael Buesch <mb@bu3sch.de>
Michael Buesch <mb@bu3sch.de>
Michael Buesch <mbuesch@freenet.de>
Michael Buesch <mbuesch@freenet.de>
+6 −6
Original line number Original line Diff line number Diff line
@@ -1653,14 +1653,14 @@ S: Chapel Hill, North Carolina 27514-4818
S: USA
S: USA


N: Dave Jones
N: Dave Jones
E: davej@codemonkey.org.uk
E: davej@redhat.com
W: http://www.codemonkey.org.uk
W: http://www.codemonkey.org.uk
D: x86 errata/setup maintenance.
D: Assorted VIA x86 support.
D: AGPGART driver.
D: 2.5 AGPGART overhaul.
D: CPUFREQ maintenance.
D: CPUFREQ maintenance.
D: Backport/Forwardport merge monkey.
D: Fedora kernel maintainence.
D: Various Janitor work.
D: Misc/Other.
S: United Kingdom
S: 314 Littleton Rd, Westford, MA 01886, USA


N: Martin Josfsson
N: Martin Josfsson
E: gandalf@wlug.westbo.se
E: gandalf@wlug.westbo.se
+1 −1
Original line number Original line Diff line number Diff line
@@ -1105,7 +1105,7 @@ static struct block_device_operations opt_fops = {
    </listitem>
    </listitem>
    <listitem>
    <listitem>
     <para>
     <para>
      Function names as strings (__FUNCTION__).
      Function names as strings (__func__).
     </para>
     </para>
    </listitem>
    </listitem>
    <listitem>
    <listitem>
+2 −4
Original line number Original line Diff line number Diff line
@@ -236,10 +236,8 @@ software system can set different pages for controlling accesses to the
MSI-X structure. The implementation of MSI support requires the PCI
MSI-X structure. The implementation of MSI support requires the PCI
subsystem, not a device driver, to maintain full control of the MSI-X
subsystem, not a device driver, to maintain full control of the MSI-X
table/MSI-X PBA (Pending Bit Array) and MMIO address space of the MSI-X
table/MSI-X PBA (Pending Bit Array) and MMIO address space of the MSI-X
table/MSI-X PBA.  A device driver is prohibited from requesting the MMIO
table/MSI-X PBA.  A device driver should not access the MMIO address
address space of the MSI-X table/MSI-X PBA. Otherwise, the PCI subsystem
space of the MSI-X table/MSI-X PBA.
will fail enabling MSI-X on its hardware device when it calls the function
pci_enable_msix().


5.3.2 API pci_enable_msix
5.3.2 API pci_enable_msix


+4 −0
Original line number Original line Diff line number Diff line
@@ -163,6 +163,10 @@ need pass only as many optional fields as necessary:
	o class and classmask fields default to 0
	o class and classmask fields default to 0
	o driver_data defaults to 0UL.
	o driver_data defaults to 0UL.


Note that driver_data must match the value used by any of the pci_device_id
entries defined in the driver. This makes the driver_data field mandatory
if all the pci_device_id entries have a non-zero driver_data value.

Once added, the driver probe routine will be invoked for any unclaimed
Once added, the driver probe routine will be invoked for any unclaimed
PCI devices listed in its (newly updated) pci_ids list.
PCI devices listed in its (newly updated) pci_ids list.


Loading