Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

of: Explicitly include linux/types.h in of_graph.h

In current -next of_graph.h fails to build due to it relying on
linux/types.h without explicitly including it:

../include/linux/of_graph.h:43:71: error: unknown type name 'u32'

caused by bfe446e37c4e (of: Add of_graph_get_port_by_id function). Add
an explicit inclusion to fix this.

Signed-off-by: Mark Brown <broonie@kernel.org>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Rob Herring <robh@kernel.org>

authored by

Mark Brown and committed by
Rob Herring
01218bf1 23a71fd6

+2
+2
include/linux/of_graph.h
··· 14 14 #ifndef __LINUX_OF_GRAPH_H 15 15 #define __LINUX_OF_GRAPH_H 16 16 17 + #include <linux/types.h> 18 + 17 19 /** 18 20 * struct of_endpoint - the OF graph endpoint data structure 19 21 * @port: identifier (value of reg property) of a port this endpoint belongs to