staging: lustre: remove parentheses usage with return

Fix the following checkpatch error:

ERROR: return is not a function, parentheses are not required

Signed-off-by: Srikrishan Malik <srikrishanmalik@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Srikrishan Malik 2014-08-11 23:57:38 +05:30 коммит произвёл Greg Kroah-Hartman
Родитель 78dd07983b
Коммит eb44520b3a
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2588,7 +2588,7 @@ static int mdc_process_config(struct obd_device *obd, obd_count len, void *buf)
rc = 0;
break;
}
return(rc);
return rc;
}