2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-25 21:54:06 +08:00

GPIO: gpiolib: trivial: Add missing carriage return

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
Alexander Shiyan 2014-09-19 11:39:25 +04:00 committed by Linus Walleij
parent 46824e2244
commit 43a8785aee

View File

@ -1652,7 +1652,7 @@ struct gpio_desc *__must_check __gpiod_get_index(struct device *dev,
* a result. In that case, use platform lookup as a fallback. * a result. In that case, use platform lookup as a fallback.
*/ */
if (!desc || desc == ERR_PTR(-ENOENT)) { if (!desc || desc == ERR_PTR(-ENOENT)) {
dev_dbg(dev, "using lookup tables for GPIO lookup"); dev_dbg(dev, "using lookup tables for GPIO lookup\n");
desc = gpiod_find(dev, con_id, idx, &lookupflags); desc = gpiod_find(dev, con_id, idx, &lookupflags);
} }