ata: libahci: replace obsolete simple_strtoul() with kstrtouint()

Signed-off-by: Daeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
This commit is contained in:
Daeseok Youn 2014-02-20 08:28:45 +09:00 коммит произвёл Tejun Heo
Родитель 35186d0583
Коммит b2a52b6a0a
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1031,12 +1031,13 @@ static ssize_t ahci_led_show(struct ata_port *ap, char *buf)
static ssize_t ahci_led_store(struct ata_port *ap, const char *buf,
size_t size)
{
int state;
unsigned int state;
int pmp;
struct ahci_port_priv *pp = ap->private_data;
struct ahci_em_priv *emp;
state = simple_strtoul(buf, NULL, 0);
if (kstrtouint(buf, 0, &state) < 0)
return -EINVAL;
/* get the slot number from the message */
pmp = (state & EM_MSG_LED_PMP_SLOT) >> 8;