Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: remove comments that mention obsolete __SLOW_DOWN_IO

The only remaining definitions of __SLOW_DOWN_IO (for alpha and ia64) do
nothing, and the only mentions in networking are in comments. Remove these
mentions.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Bjorn Helgaas and committed by
Jakub Kicinski
e39f63fe dac173db

-9
-5
drivers/atm/nicstarmac.c
··· 14 14 15 15 #define CYCLE_DELAY 5 16 16 17 - /* 18 - This was the original definition 19 - #define osp_MicroDelay(microsec) \ 20 - do { int _i = 4*microsec; while (--_i > 0) { __SLOW_DOWN_IO; }} while (0) 21 - */ 22 17 #define osp_MicroDelay(microsec) {unsigned long useconds = (microsec); \ 23 18 udelay((useconds));} 24 19 /*
-2
drivers/net/ethernet/dec/tulip/winbond-840.c
··· 474 474 No extra delay is needed with 33Mhz PCI, but future 66Mhz access may need 475 475 a delay. Note that pre-2.0.34 kernels had a cache-alignment bug that 476 476 made udelay() unreliable. 477 - The old method of using an ISA access as a delay, __SLOW_DOWN_IO__, is 478 - deprecated. 479 477 */ 480 478 #define eeprom_delay(ee_addr) ioread32(ee_addr) 481 479
-2
drivers/net/ethernet/natsemi/natsemi.c
··· 989 989 No extra delay is needed with 33Mhz PCI, but future 66Mhz access may need 990 990 a delay. Note that pre-2.0.34 kernels had a cache-alignment bug that 991 991 made udelay() unreliable. 992 - The old method of using an ISA access as a delay, __SLOW_DOWN_IO__, is 993 - deprecated. 994 992 */ 995 993 #define eeprom_delay(ee_addr) readl(ee_addr) 996 994