[patch-kj] remove old ifdefs

From: maximilian attems
Date: Fri Jul 23 2004 - 10:12:41 EST




Patches to remove some old ifdefs.
remove most of the #include <linux/version.h>
kill compat cruft like #define ahd_pci_set_dma_mask pci_set_dma_mask

applies cleanly to 2.6.8-rc2

From: Domen Puncer <domen@xxxxxxxxxxxx>
Signed-off-by: Maximilian Attems <janitor@xxxxxxxxxxxxxx>



---

linux-2.6.7-bk20-max/include/linux/mtd/cfi.h | 2 --
1 files changed, 2 deletions(-)

diff -puN include/linux/mtd/cfi.h~remove-old-ifdefs-mtd-cfi include/linux/mtd/cfi.h
--- linux-2.6.7-bk20/include/linux/mtd/cfi.h~remove-old-ifdefs-mtd-cfi 2004-07-11 14:42:34.000000000 +0200
+++ linux-2.6.7-bk20-max/include/linux/mtd/cfi.h 2004-07-11 14:42:34.000000000 +0200
@@ -458,14 +458,12 @@ static inline __u8 cfi_read_query(struct

static inline void cfi_udelay(int us)
{
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,2,0)
unsigned long t = us * HZ / 1000000;
if (t) {
set_current_state(TASK_UNINTERRUPTIBLE);
schedule_timeout(t);
return;
}
-#endif
udelay(us);
cond_resched();
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/