diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-01-23 02:43:47 -0500 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-01-25 03:09:32 -0500 |
commit | ed0a27ef6411b22c75ae596ca2722dd7b621bcd0 (patch) | |
tree | 16f7334377b42fdbded04a32ba9ebf87db150aac | |
parent | 0c744ea4f77d72b3dcebb7a8f2684633ec79be88 (diff) |
ARM: tegra: paz00: Fix __initdata placement
Placement of attributes, such as __initdata, is standardized through the
checkpatch script. Fix up this instance to make checkpatch happy.
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r-- | arch/arm/mach-tegra/board-paz00.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board-paz00.c b/arch/arm/mach-tegra/board-paz00.c index 7478f6fb3664..ea6bff404161 100644 --- a/arch/arm/mach-tegra/board-paz00.c +++ b/arch/arm/mach-tegra/board-paz00.c | |||
@@ -23,7 +23,7 @@ | |||
23 | 23 | ||
24 | #include "board.h" | 24 | #include "board.h" |
25 | 25 | ||
26 | static struct property_entry __initdata wifi_rfkill_prop[] = { | 26 | static struct property_entry wifi_rfkill_prop[] __initdata = { |
27 | PROPERTY_ENTRY_STRING("name", "wifi_rfkill"), | 27 | PROPERTY_ENTRY_STRING("name", "wifi_rfkill"), |
28 | PROPERTY_ENTRY_STRING("type", "wlan"), | 28 | PROPERTY_ENTRY_STRING("type", "wlan"), |
29 | { }, | 29 | { }, |