diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2015-12-29 14:07:48 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-01-01 04:09:51 +0300 |
commit | aace7367bf83aef7baa021c7bcc9d2e331b040aa (patch) | |
tree | 679343f1790f79140bce49e18ba694cf2cf9b18e /include/linux/property.h | |
parent | d76eebfa175e86383324ad2bbaf472866950398b (diff) | |
download | linux-aace7367bf83aef7baa021c7bcc9d2e331b040aa.tar.xz |
device property: add spaces to PROPERTY_ENTRY_STRING macro
Just a style fix, no functional changes.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/property.h')
-rw-r--r-- | include/linux/property.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/property.h b/include/linux/property.h index b8c4e420fe87..b51fcd36d892 100644 --- a/include/linux/property.h +++ b/include/linux/property.h @@ -230,7 +230,7 @@ struct property_entry { .name = _name_, \ .length = sizeof(_val_), \ .is_string = true, \ - { .value = {.str = _val_} }, \ + { .value = { .str = _val_ } }, \ } #define PROPERTY_ENTRY_BOOL(_name_) \ |