summaryrefslogtreecommitdiffstats
path: root/drivers/memory
diff options
context:
space:
mode:
authorRoger Quadros <rogerq@ti.com>2018-04-20 06:02:49 -0400
committerRoger Quadros <rogerq@ti.com>2018-04-24 03:30:52 -0400
commitd507178f2ebb7bde5b3f64557f1c8f80e7b82541 (patch)
tree9cc36934a7e7d54af46b6794f34b01ed1dd572ea /drivers/memory
parent60cc43fc888428bb2f18f08997432d426a243338 (diff)
memory: omap-gpmc: Avoid redundant NULL check
child->name cannot be NULL as we're already checking for it in gpmc_probe_dt_children() Signed-off-by: Roger Quadros <rogerq@ti.com>
Diffstat (limited to 'drivers/memory')
-rw-r--r--drivers/memory/omap-gpmc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/memory/omap-gpmc.c b/drivers/memory/omap-gpmc.c
index 90a66b3f7ae1..c215287e80cf 100644
--- a/drivers/memory/omap-gpmc.c
+++ b/drivers/memory/omap-gpmc.c
@@ -2060,8 +2060,8 @@ static int gpmc_probe_generic_child(struct platform_device *pdev,
2060 * timings. 2060 * timings.
2061 */ 2061 */
2062 name = gpmc_cs_get_name(cs); 2062 name = gpmc_cs_get_name(cs);
2063 if (name && child->name && of_node_cmp(child->name, name) == 0) 2063 if (name && of_node_cmp(child->name, name) == 0)
2064 goto no_timings; 2064 goto no_timings;
2065 2065
2066 ret = gpmc_cs_request(cs, resource_size(&res), &base); 2066 ret = gpmc_cs_request(cs, resource_size(&res), &base);
2067 if (ret < 0) { 2067 if (ret < 0) {