From: Matt Mackall Flash doesn't possess the same unpredictable performance characteristics as traditional media. Signed-off-by: Matt Mackall Cc: Russell King Cc: Dominik Brodowski Cc: David Brownell Signed-off-by: Andrew Morton --- drivers/mmc/at91_mci.c | 2 +- drivers/pcmcia/at91_cf.c | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff -puN drivers/mmc/at91_mci.c~random-remove-bogus-sa_sample_random-from-at91-compact-flash-driver drivers/mmc/at91_mci.c --- devel/drivers/mmc/at91_mci.c~random-remove-bogus-sa_sample_random-from-at91-compact-flash-driver 2006-05-11 01:46:23.000000000 -0700 +++ devel-akpm/drivers/mmc/at91_mci.c 2006-05-11 01:46:23.000000000 -0700 @@ -886,7 +886,7 @@ static int at91_mci_probe(struct platfor */ if (host->board->det_pin) { ret = request_irq(host->board->det_pin, at91_mmc_det_irq, - SA_SAMPLE_RANDOM, DRIVER_NAME, host); + 0, DRIVER_NAME, host); if (ret) DBG("couldn't allocate MMC detect irq\n"); } diff -puN drivers/pcmcia/at91_cf.c~random-remove-bogus-sa_sample_random-from-at91-compact-flash-driver drivers/pcmcia/at91_cf.c --- devel/drivers/pcmcia/at91_cf.c~random-remove-bogus-sa_sample_random-from-at91-compact-flash-driver 2006-05-11 01:46:23.000000000 -0700 +++ devel-akpm/drivers/pcmcia/at91_cf.c 2006-05-11 01:46:23.000000000 -0700 @@ -267,8 +267,7 @@ static int __init at91_cf_probe(struct d ); /* must be a GPIO; ergo must trigger on both edges */ - status = request_irq(board->det_pin, at91_cf_irq, - SA_SAMPLE_RANDOM, driver_name, cf); + status = request_irq(board->det_pin, at91_cf_irq, 0, driver_name, cf); if (status < 0) goto fail0; _