On Fri, Nov 03, 2017 at 03:30:45PM +0200, Roger Quadros wrote: > On 03/11/17 15:16, Ladislav Michl wrote: [snip] > > Actually this comment is still wrong (and thus commit message). > > Documentation/devicetree/bindings/net/gpmc-eth.txt > > Ethernet is using this as well... > > Oh :(. Ideally it shouldn't have been the case. But damage is already done. > > I think we should still fix up the gpmc-eth binding document to use gpmc,device-width there. > And continue to support in code anybody already using bank-width for ethernet. Agreed, following version with decreased controversy. (note all this is only to get OneNAND merge ready :)) 8<----------------------- Subject: [PATCH] memory: omap-gpmc: Make 'bank-width' property optional Some devices are using 'gpmc,device-width' property to configure device width, so fail on missing 'bank-width' only if this property was previously unassigned. Signed-off-by: Ladislav Michl <ladis@xxxxxxxxxxxxxx> --- drivers/memory/omap-gpmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/memory/omap-gpmc.c b/drivers/memory/omap-gpmc.c index ff73f2ad468c..f79e78b16a48 100644 --- a/drivers/memory/omap-gpmc.c +++ b/drivers/memory/omap-gpmc.c @@ -2159,7 +2159,7 @@ static int gpmc_probe_generic_child(struct platform_device *pdev, } else { ret = of_property_read_u32(child, "bank-width", &gpmc_s.device_width); - if (ret < 0) { + if (ret < 0 && !gpmc_s.device_width) { dev_err(&pdev->dev, "%pOF has no 'bank-width' property\n", child); goto err; -- 2.11.0 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html