mfd: Fix egpio kzalloc return test

Since ei is already known to be non-NULL, I assume that what was intended
was to test the result of kzalloc.

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
This commit is contained in:
Julia Lawall 2009-02-04 20:44:01 +01:00 коммит произвёл Samuel Ortiz
Родитель d2f8d7ee1a
Коммит 720fd66dfa
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -307,7 +307,7 @@ static int __init egpio_probe(struct platform_device *pdev)
ei->nchips = pdata->num_chips;
ei->chip = kzalloc(sizeof(struct egpio_chip) * ei->nchips, GFP_KERNEL);
if (!ei) {
if (!ei->chip) {
ret = -ENOMEM;
goto fail;
}