diff options
| author | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
|---|---|---|
| committer | Rodrigo Vivi <[email protected]> | 2018-07-23 09:13:12 -0700 | 
| commit | c74a7469f97c0f40b46e82ee979f9fb1bb6e847c (patch) | |
| tree | f2690a1a916b73ef94657fbf0e0141ae57701825 /arch/x86/kernel/early-quirks.c | |
| parent | 6f15a7de86c8cf2dc09fc9e6d07047efa40ef809 (diff) | |
| parent | 500775074f88d9cf5416bed2ca19592812d62c41 (diff) | |
Merge drm/drm-next into drm-intel-next-queued
We need a backmerge to get DP_DPCD_REV_14 before we push other
i915 changes to dinq that could break compilation.
Signed-off-by: Rodrigo Vivi <[email protected]>
Diffstat (limited to 'arch/x86/kernel/early-quirks.c')
| -rw-r--r-- | arch/x86/kernel/early-quirks.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/arch/x86/kernel/early-quirks.c b/arch/x86/kernel/early-quirks.c index 72c2cf961d44..50d5848bf22e 100644 --- a/arch/x86/kernel/early-quirks.c +++ b/arch/x86/kernel/early-quirks.c @@ -28,8 +28,6 @@  #include <asm/irq_remapping.h>  #include <asm/early_ioremap.h> -#define dev_err(msg)  pr_err("pci 0000:%02x:%02x.%d: %s", bus, slot, func, msg) -  static void __init fix_hypertransport_config(int num, int slot, int func)  {  	u32 htcfg; @@ -635,7 +633,8 @@ static void __init apple_airport_reset(int bus, int slot, int func)  		pmcsr = read_pci_config_16(bus, slot, func, BCM4331_PM_CAP + PCI_PM_CTRL);  		if ((pmcsr & PCI_PM_CTRL_STATE_MASK) != PCI_D0) { -			dev_err("Cannot power up Apple AirPort card\n"); +			pr_err("pci 0000:%02x:%02x.%d: Cannot power up Apple AirPort card\n", +			       bus, slot, func);  			return;  		}  	} @@ -646,7 +645,8 @@ static void __init apple_airport_reset(int bus, int slot, int func)  	mmio = early_ioremap(addr, BCM4331_MMIO_SIZE);  	if (!mmio) { -		dev_err("Cannot iomap Apple AirPort card\n"); +		pr_err("pci 0000:%02x:%02x.%d: Cannot iomap Apple AirPort card\n", +		       bus, slot, func);  		return;  	} |