Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257428
b: refs/heads/master
c: 3817505
h: refs/heads/master
v: v3
  • Loading branch information
Sergei Shtylyov authored and Ingo Molnar committed Jul 21, 2011
1 parent 1a2baaf commit 99d02d9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43605ef188cd39708ddc5e3adc47b337b6ebe40e
refs/heads/master: 38175051f8e79c5e9f65daab7200fd8d1fa4a912
15 changes: 2 additions & 13 deletions trunk/arch/x86/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -384,21 +384,12 @@ config X86_INTEL_CE
This option compiles in support for the CE4100 SOC for settop
boxes and media devices.

config X86_INTEL_MID
bool "Intel MID platform support"
depends on X86_32
depends on X86_EXTENDED_PLATFORM
---help---
Select to build a kernel capable of supporting Intel MID platform
systems which do not have the PCI legacy interfaces (Moorestown,
Medfield). If you are building for a PC class system say N here.

if X86_INTEL_MID

config X86_MRST
bool "Moorestown MID platform"
depends on PCI
depends on PCI_GOANY
depends on X86_32
depends on X86_EXTENDED_PLATFORM
depends on X86_IO_APIC
select APB_TIMER
select I2C
Expand All @@ -413,8 +404,6 @@ config X86_MRST
nor standard legacy replacement devices/features. e.g. Moorestown does
not contain i8259, i8254, HPET, legacy BIOS, most of the io ports.

endif

config X86_RDC321X
bool "RDC R-321x SoC"
depends on X86_32
Expand Down
5 changes: 2 additions & 3 deletions trunk/arch/x86/kernel/quirks.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,15 @@

static void __devinit quirk_intel_irqbalance(struct pci_dev *dev)
{
u8 config, rev;
u8 config;
u16 word;

/* BIOS may enable hardware IRQ balancing for
* E7520/E7320/E7525(revision ID 0x9 and below)
* based platforms.
* Disable SW irqbalance/affinity on those platforms.
*/
pci_read_config_byte(dev, PCI_CLASS_REVISION, &rev);
if (rev > 0x9)
if (dev->revision > 0x9)
return;

/* enable access to config space*/
Expand Down

0 comments on commit 99d02d9

Please sign in to comment.