From 4af0d7e8709eafc4d410697dd64d26eeb1a9590f Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 17 May 2017 17:18:07 -0600 Subject: dm: Fix up inclusion of common.h It is good practice to include common.h as the first header. This ensures that required features like the DECLARE_GLOBAL_DATA_PTR macro, configuration options and common types are available. Fix up some files which currently don't do this. This is necessary because driver model will soon start using global data and configuration in the dm/read.h header file, included via dm.h. The gd->fdt_blob value will be used to access the device tree and CONFIG options will be used to determine whether to support inline functions in the header file. Signed-off-by: Simon Glass --- drivers/firmware/firmware-uclass.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/firmware') diff --git a/drivers/firmware/firmware-uclass.c b/drivers/firmware/firmware-uclass.c index 6c96656dd0..af781b5b69 100644 --- a/drivers/firmware/firmware-uclass.c +++ b/drivers/firmware/firmware-uclass.c @@ -2,6 +2,7 @@ * SPDX-License-Identifier: GPL-2.0+ */ +#include #include /* Firmware access is platform-dependent. No generic code in uclass */ -- cgit v1.2.3