diff options
author | Kyle McMartin <kyle@parisc-linux.org> | 2006-05-30 17:50:29 +0000 |
---|---|---|
committer | Kyle McMartin <kyle@hera.kernel.org> | 2006-06-27 23:28:35 +0000 |
commit | 692086e0b3ca9a6cb876b901bfa87717044cb20f (patch) | |
tree | 5710c05d97ae0a097b38d1c8aeb91f16ff516b22 /drivers/parisc | |
parent | 40d78de1aced7e0f3ce112698d847adcc643efdf (diff) | |
download | linux-3.10-692086e0b3ca9a6cb876b901bfa87717044cb20f.tar.gz linux-3.10-692086e0b3ca9a6cb876b901bfa87717044cb20f.tar.bz2 linux-3.10-692086e0b3ca9a6cb876b901bfa87717044cb20f.zip |
[PARISC] Test ioc_needs_fdc variable instead of open coding
Some debugging code in sba_iommu.c should be testing ioc_needs_fdc,
not directly testing boot_cpu_data.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'drivers/parisc')
-rw-r--r-- | drivers/parisc/sba_iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/sba_iommu.c b/drivers/parisc/sba_iommu.c index 49b61755119..d09e39e39c6 100644 --- a/drivers/parisc/sba_iommu.c +++ b/drivers/parisc/sba_iommu.c @@ -1903,7 +1903,7 @@ sba_common_init(struct sba_device *sba_dev) * (bit #61, big endian), we have to flush and sync every time * IO-PDIR is changed in Ike/Astro. */ - if (boot_cpu_data.pdc.capabilities & PDC_MODEL_IOPDIR_FDC) { + if (ioc_needs_fdc) { printk(KERN_INFO MODULE_NAME " FDC/SYNC required.\n"); } else { printk(KERN_INFO MODULE_NAME " IOC has cache coherent PDIR.\n"); |