diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2016-11-23 08:40:00 -0500 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2016-11-23 09:56:42 -0500 |
commit | d0c7546f6257b4680a760e3fd0dff8a7cc4600ff (patch) | |
tree | 90c5ae604d5b443f759bd55e52da57b09ba3fa53 | |
parent | 48c28337380ac499df5e370bc1ec1d6217ac35bc (diff) |
memory: da8xx-ddrctl: drop the call to of_flat_dt_get_machine_name()
In order to avoid a section mismatch drop the call to
of_flat_dt_get_machine_name() when printing the error message.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
-rw-r--r-- | drivers/memory/da8xx-ddrctl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/memory/da8xx-ddrctl.c b/drivers/memory/da8xx-ddrctl.c index a20e7bbbcbe0..030afbe29d0c 100644 --- a/drivers/memory/da8xx-ddrctl.c +++ b/drivers/memory/da8xx-ddrctl.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include <linux/module.h> | 14 | #include <linux/module.h> |
15 | #include <linux/of.h> | 15 | #include <linux/of.h> |
16 | #include <linux/of_device.h> | 16 | #include <linux/of_device.h> |
17 | #include <linux/of_fdt.h> | ||
18 | #include <linux/platform_device.h> | 17 | #include <linux/platform_device.h> |
19 | #include <linux/io.h> | 18 | #include <linux/io.h> |
20 | 19 | ||
@@ -117,8 +116,7 @@ static int da8xx_ddrctl_probe(struct platform_device *pdev) | |||
117 | 116 | ||
118 | setting = da8xx_ddrctl_get_board_settings(); | 117 | setting = da8xx_ddrctl_get_board_settings(); |
119 | if (!setting) { | 118 | if (!setting) { |
120 | dev_err(dev, "no settings for board '%s'\n", | 119 | dev_err(dev, "no settings defined for this board\n"); |
121 | of_flat_dt_get_machine_name()); | ||
122 | return -EINVAL; | 120 | return -EINVAL; |
123 | } | 121 | } |
124 | 122 | ||