]> Git Repo - J-u-boot.git/commitdiff
spi: atcspi200: Change include order
authorJagan Teki <[email protected]>
Wed, 8 May 2019 14:12:16 +0000 (19:42 +0530)
committerJagan Teki <[email protected]>
Wed, 8 May 2019 19:12:55 +0000 (00:42 +0530)
Like clk_get_by_index, there is requirement for
clk_get_by_index_nodev. In this case to make common
code functionalities for dev and nodev, clk_get_by_index
is trying to get the index of clock by passing ofnode
instead of actual dev like current gpio uclass does.

In these scenarios with current order of include files
the atcspi200_spi driver is unable to find CONFIG_ENV_SIZE.

In file included from arch/nds32/include/asm/u-boot.h:24,
                 from include/dm/of.h:10,
                 from include/dm/ofnode.h:12,
                 from include/clk.h:11,
                 from drivers/spi/atcspi200_spi.c:9:
include/environment.h:145:19: error: 'CONFIG_ENV_SIZE'
undeclared here (not in a function); did you mean 'CONFIG_CMD_XIMG'?
 #define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE)

So, fix consists of changing the order of include files
in atcspi200_spi.c to include first common.h file.

Reviewed-by: Bin Meng <[email protected]>
Signed-off-by: Jagan Teki <[email protected]>
drivers/spi/atcspi200_spi.c

index af96c6d21e5c5e04220c2936e8586f5b192b4691..e0cc323444056d164c4d5c95393e0cffb338c6f4 100644 (file)
@@ -6,8 +6,8 @@
  * Author: Rick Chen ([email protected])
  */
 
-#include <clk.h>
 #include <common.h>
+#include <clk.h>
 #include <malloc.h>
 #include <spi.h>
 #include <asm/io.h>
This page took 0.04962 seconds and 4 git commands to generate.