diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-03 17:12:33 +0900 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2019-06-17 04:45:21 -0700 |
commit | 5ec47cda74e98ad2f723f93b4a97ba87638338aa (patch) | |
tree | ed3e9856fce5d3474844ad12bdd664716e7597c7 /drivers/memory/of_memory.c | |
parent | 7b43b8fdc9a6283c0b9405542c4406cfa1e5689a (diff) | |
download | talos-op-linux-5ec47cda74e98ad2f723f93b4a97ba87638338aa.tar.gz talos-op-linux-5ec47cda74e98ad2f723f93b4a97ba87638338aa.zip |
memory: move jedec_ddr.h from include/memory to drivers/memory/
Now that jedec_ddr_data.c was moved from lib/ to drivers/memory/,
<memory/jedec_ddr.h> is included only from drivers/memory/.
Make it a local header of drivers/memory/.
The directory include/memory is now gone.
While I am here, I also changed #include <linux/module.h> to
<linux/export.h>. Because CONFIG_DDR is bool, jedec_ddr_data.c is
never compiled as a module.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/memory/of_memory.c')
-rw-r--r-- | drivers/memory/of_memory.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/memory/of_memory.c b/drivers/memory/of_memory.c index 12a61f558644..46539b27a3fb 100644 --- a/drivers/memory/of_memory.c +++ b/drivers/memory/of_memory.c @@ -10,8 +10,9 @@ #include <linux/list.h> #include <linux/of.h> #include <linux/gfp.h> -#include <memory/jedec_ddr.h> #include <linux/export.h> + +#include "jedec_ddr.h" #include "of_memory.h" /** |