From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexandre Courbot Subject: [PATCH] gpiolib: add missing declarations Date: Sat, 23 Nov 2013 14:54:29 +0900 Message-ID: <1385186069-28986-1-git-send-email-acourbot@nvidia.com> Return-path: Received: from gnurou.org ([207.192.72.5]:40440 "EHLO mail.gnurou.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754166Ab3KWF4A (ORCPT ); Sat, 23 Nov 2013 00:56:00 -0500 Sender: linux-gpio-owner@vger.kernel.org List-Id: linux-gpio@vger.kernel.org To: Linus Walleij Cc: Stephen Warren , Mika Westerberg , linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, Alexandre Courbot Add missing declarations and include files to avoid warnings during compilation of include/gpio/driver.h. Signed-off-by: Alexandre Courbot Reported-by: Stephen Warren --- include/linux/gpio/driver.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/gpio/driver.h b/include/linux/gpio/driver.h index 82eac61..3ea2cf6 100644 --- a/include/linux/gpio/driver.h +++ b/include/linux/gpio/driver.h @@ -2,9 +2,12 @@ #define __LINUX_GPIO_DRIVER_H #include +#include struct device; struct gpio_desc; +struct of_phandle_args; +struct device_node; struct seq_file; /** -- 1.8.4.2