commit | 6cbaefb4bf2ce6746e49c972289702133b347ffa | [log] [tgz] |
---|---|---|
author | Joe Perches <joe@perches.com> | Tue Dec 19 10:15:09 2017 -0800 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Tue Jan 09 16:34:35 2018 +0100 |
tree | b52aaffb94a7fdc0b7b829fbdc6b4d5903cc76b9 | |
parent | c828a8920307185b7194b575731e8387c99a5a67 [diff] |
treewide: Use DEVICE_ATTR_WO Convert DEVICE_ATTR uses to DEVICE_ATTR_WO where possible. Done with perl script: $ git grep -w --name-only DEVICE_ATTR | \ xargs perl -i -e 'local $/; while (<>) { s/\bDEVICE_ATTR\s*\(\s*(\w+)\s*,\s*\(?(?:\s*S_IWUSR\s*|\s*0200\s*)\)?\s*,\s*NULL\s*,\s*\s_store\s*\)/DEVICE_ATTR_WO(\1)/g; print;}' Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>