diff options
author | Mateusz Nowotyński <maxmati4@gmail.com> | 2017-07-09 18:14:42 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-07-16 08:41:01 +0200 |
commit | 2fcd74b7c2a60bcbcdb84fce92fed2f83b247a61 (patch) | |
tree | 2d791480e92fcadd7031024b39158667285c192a /drivers/staging/android | |
parent | feb9828b1eb1da9c1b7caa40aaa86e4fc65c0cbd (diff) | |
download | blackbird-obmc-linux-2fcd74b7c2a60bcbcdb84fce92fed2f83b247a61.tar.gz blackbird-obmc-linux-2fcd74b7c2a60bcbcdb84fce92fed2f83b247a61.zip |
Staging: android: use BIT macro
Use BIT macro instead of left shifting in android/ion/ion.h
Signed-off-by: Mateusz Nowotyński <maxmati4@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/android')
-rw-r--r-- | drivers/staging/android/ion/ion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/android/ion/ion.h b/drivers/staging/android/ion/ion.h index b91328a51b77..621e5f7ceacb 100644 --- a/drivers/staging/android/ion/ion.h +++ b/drivers/staging/android/ion/ion.h @@ -135,7 +135,7 @@ struct ion_heap_ops { /** * heap flags - flags between the heaps and core ion code */ -#define ION_HEAP_FLAG_DEFER_FREE (1 << 0) +#define ION_HEAP_FLAG_DEFER_FREE BIT(0) /** * private flags - flags internal to ion @@ -146,7 +146,7 @@ struct ion_heap_ops { * any buffer storage that came from the system allocator will be * returned to the system allocator. */ -#define ION_PRIV_FLAG_SHRINKER_FREE (1 << 0) +#define ION_PRIV_FLAG_SHRINKER_FREE BIT(0) /** * struct ion_heap - represents a heap in the system |