mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
i7300_idle: Fix compile warning CONFIG_I7300_IDLE_IOAT_CHANNEL not defined
When I7300_idle driver is not configured, there is a compile time warning about IDLE_IOAT_CHANNEL not defined. Fix it. Reported-by: Suresh Siddha <suresh.b.siddha@intel.com> Reported-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
33093e186c
commit
f371be6352
@ -172,7 +172,7 @@ static int ioat_dma_enumerate_channels(struct ioatdma_device *device)
|
|||||||
xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET);
|
xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET);
|
||||||
xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale));
|
xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale));
|
||||||
|
|
||||||
#if CONFIG_I7300_IDLE_IOAT_CHANNEL
|
#ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL
|
||||||
if (i7300_idle_platform_probe(NULL, NULL) == 0) {
|
if (i7300_idle_platform_probe(NULL, NULL) == 0) {
|
||||||
device->common.chancnt--;
|
device->common.chancnt--;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user