Commit 13311b00 authored by Luis R. Rodriguez's avatar Luis R. Rodriguez Committed by John W. Linville

ath5k: use bit shift operators for cache line size

This matches ath9k, providing consistency when reading both drivers.
Signed-off-by: default avatarLuis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent aeb63cfd
...@@ -471,7 +471,7 @@ ath5k_pci_probe(struct pci_dev *pdev, ...@@ -471,7 +471,7 @@ ath5k_pci_probe(struct pci_dev *pdev,
* DMA to work so force a reasonable value here if it * DMA to work so force a reasonable value here if it
* comes up zero. * comes up zero.
*/ */
csz = L1_CACHE_BYTES / sizeof(u32); csz = L1_CACHE_BYTES >> 2;
pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz); pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, csz);
} }
/* /*
...@@ -544,7 +544,7 @@ ath5k_pci_probe(struct pci_dev *pdev, ...@@ -544,7 +544,7 @@ ath5k_pci_probe(struct pci_dev *pdev,
__set_bit(ATH_STAT_INVALID, sc->status); __set_bit(ATH_STAT_INVALID, sc->status);
sc->iobase = mem; /* So we can unmap it on detach */ sc->iobase = mem; /* So we can unmap it on detach */
sc->common.cachelsz = csz * sizeof(u32); /* convert to bytes */ sc->common.cachelsz = csz << 2; /* convert to bytes */
sc->opmode = NL80211_IFTYPE_STATION; sc->opmode = NL80211_IFTYPE_STATION;
sc->bintval = 1000; sc->bintval = 1000;
mutex_init(&sc->lock); mutex_init(&sc->lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment