Philipp Zabel
00fd961912
of: Fix of_graph_parse_endpoint stub for !CONFIG_OF builds
This patch fixes the following build error:
In file included from drivers/media/i2c/adv7343.c:29:0:
>> include/linux/of_graph.h:41:1: error: expected identifier or '(' before '{' token
{
^
include/linux/of_graph.h:39:19: warning: 'of_graph_parse_endpoint' declared 'static' but never defined [-Wunused-function]
static inline int of_graph_parse_endpoint(const struct device_node *node,
^
vim +41 include/linux/of_graph.h
35 const struct device_node *node);
36 struct device_node *of_graph_get_remote_port(const struct device_node *node);
37 #else
38
39 static inline int of_graph_parse_endpoint(const struct device_node *node,
40 struct of_endpoint *endpoint);
> 41 {
42 return -ENOSYS;
43 }
44
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
2014-03-07 16:02:46 +01:00
..
2014-02-17 12:37:09 -08:00
2014-02-06 10:22:56 +01:00
2014-02-19 13:30:30 +00:00
2014-02-13 20:48:02 -08:00
2014-02-05 05:48:43 +00:00
2014-02-11 12:08:27 +00:00
2014-02-05 12:54:53 -08:00
2014-02-11 08:40:45 -07:00
2014-02-10 09:29:00 -07:00
2014-02-14 10:45:18 -08:00
2014-02-11 10:38:30 -05:00
2014-02-13 12:34:05 +01:00
2014-02-13 10:08:52 +05:30
2014-02-09 18:12:07 -08:00
2014-02-25 11:18:06 +01:00
2014-02-07 08:27:34 -08:00
2014-02-09 15:27:21 +01:00
2014-02-25 15:25:45 -08:00
2014-02-25 07:37:52 -08:00
2014-02-17 00:36:34 -05:00
2014-02-05 10:04:37 -06:00
2014-03-07 16:02:46 +01:00
2014-02-05 09:51:54 -06:00
2014-02-06 13:48:51 -08:00
2014-02-13 10:48:02 -07:00
2014-02-05 12:54:53 -08:00
2014-02-13 17:17:02 -05:00
2014-02-10 16:01:42 -08:00
2014-02-21 21:27:10 +01:00
2014-02-07 14:30:03 -08:00
2014-02-07 11:27:30 -08:00
2014-02-14 09:05:39 -05:00
2014-02-22 02:02:28 +01:00