The patch titled gpio: use __devexit at necessary places has been removed from the -mm tree. Its filename was gpio-use-__devexit-at-necessary-places.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: gpio: use __devexit at necessary places From: Axel Lin <axel.lin@xxxxxxxxx> gen_74x164_remove() and mc33880_remove() are used only wrapped by __devexit_p so define them using __devexit. Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx> Cc: Miguel Gaio <miguel.gaio@xxxxxxxxx> Cc: Mocean Laboratories <info@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/gpio/74x164.c | 2 +- drivers/gpio/mc33880.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/gpio/74x164.c~gpio-use-__devexit-at-necessary-places drivers/gpio/74x164.c --- a/drivers/gpio/74x164.c~gpio-use-__devexit-at-necessary-places +++ a/drivers/gpio/74x164.c @@ -133,7 +133,7 @@ exit_destroy: return ret; } -static int gen_74x164_remove(struct spi_device *spi) +static int __devexit gen_74x164_remove(struct spi_device *spi) { struct gen_74x164_chip *chip; int ret; diff -puN drivers/gpio/mc33880.c~gpio-use-__devexit-at-necessary-places drivers/gpio/mc33880.c --- a/drivers/gpio/mc33880.c~gpio-use-__devexit-at-necessary-places +++ a/drivers/gpio/mc33880.c @@ -146,7 +146,7 @@ exit_destroy: return ret; } -static int mc33880_remove(struct spi_device *spi) +static int __devexit mc33880_remove(struct spi_device *spi) { struct mc33880 *mc; int ret; _ Patches currently in -mm which might be from axel.lin@xxxxxxxxx are linux-next.patch drivers-video-backlight-jornada720_c-make-needlessly-global-symbols-static.patch drivers-misc-hmc6352c-fix-wrong-return-value-checking-for-i2c_master_recv.patch drivers-misc-hmc6352c-fix-wrong-return-value-checking-for-i2c_master_recv-fix.patch drivers-misc-atmel_tclibc-fix-a-memory-leak.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html