diff options
author | Frank Rowand <frank.rowand@sony.com> | 2018-10-05 05:30:40 +0200 |
---|---|---|
committer | Frank Rowand <frank.rowand@sony.com> | 2018-11-09 07:11:23 +0100 |
commit | 81225ea682f45629a66309636482b7c9bc2dcec1 (patch) | |
tree | 74343acd1d76081919a1f700cf1876de40d567ab /drivers/of/overlay.c | |
parent | of: overlay: do not duplicate properties from overlay for new nodes (diff) | |
download | linux-81225ea682f45629a66309636482b7c9bc2dcec1.tar.xz linux-81225ea682f45629a66309636482b7c9bc2dcec1.zip |
of: overlay: reorder fields in struct fragment
Order the fields of struct fragment in the same order as
struct of_overlay_notify_data. The order in struct fragment is
not significant. If both structs are ordered the same then when
examining the data in a debugger or dump the human involved does
not have to remember which context they are examining.
Tested-by: Alan Tull <atull@kernel.org>
Signed-off-by: Frank Rowand <frank.rowand@sony.com>
Diffstat (limited to 'drivers/of/overlay.c')
-rw-r--r-- | drivers/of/overlay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/overlay.c b/drivers/of/overlay.c index 9808aae4621a..15be3da34fef 100644 --- a/drivers/of/overlay.c +++ b/drivers/of/overlay.c @@ -49,8 +49,8 @@ struct target { * @overlay: pointer to the __overlay__ node */ struct fragment { - struct device_node *target; struct device_node *overlay; + struct device_node *target; }; /** |