The patch titled OZ99x I2C button and led support driver update has been removed from the -mm tree. Its filename was oz99x-i2c-button-and-led-support-driver-update.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: OZ99x I2C button and led support driver update From: Hendrik Sattler <post@xxxxxxxxxxxxxxxxxx> > (akpm: now needs s/simple_strtol/strict_strtol/g) Below does that change. Signed-off-by: Hendrik Sattler <post@xxxxxxxxxxxxxxxxxx> Cc: Jean Delvare <khali@xxxxxxxxxxxx> Cc: Richard Purdie <rpurdie@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/i2c/chips/oz99x.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff -puN drivers/i2c/chips/oz99x.c~oz99x-i2c-button-and-led-support-driver-update drivers/i2c/chips/oz99x.c --- a/drivers/i2c/chips/oz99x.c~oz99x-i2c-button-and-led-support-driver-update +++ a/drivers/i2c/chips/oz99x.c @@ -63,11 +63,12 @@ ssize_t reg_minmax_store(const char *buf size_t count, u8 *minmax) { - long val = simple_strtol(buf, NULL, 16); + unsigned long val; + int err = strict_strtoul(buf, 16, &val); + if (err) + return err; if (val > 0xFF) - val = 0xFF; - else if (val < 0x00) - val = 0x00; + return -EINVAL; *minmax = val & 0xFF; return count; } _ Patches currently in -mm which might be from post@xxxxxxxxxxxxxxxxxx are oz99x-i2c-button-and-led-support-driver-update.patch fjkeyinf-driver-for-fsc-lifebook-laptops.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