diff options
author | Mrinal Pandey <mrinalmni@gmail.com> | 2020-07-24 16:14:49 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-07-29 18:05:44 +0300 |
commit | 7e84522cd089c6ef3e6adc7f1c9a5b2f705ccd9b (patch) | |
tree | 843bea1c45b770ac32fd60dcc5e5caff0429ff92 /drivers | |
parent | 81195f9689ac16c01c894c756b925e28e546b123 (diff) | |
download | linux-7e84522cd089c6ef3e6adc7f1c9a5b2f705ccd9b.tar.xz |
drivers: android: Fix the SPDX comment style
C source files should have `//` as SPDX comment and not `/**/`. Fix this
by running checkpatch on the file.
Signed-off-by: Mrinal Pandey <mrinalmni@gmail.com>
Link: https://lore.kernel.org/r/20200724131449.zvjutbemg3vqhrzh@mrinalpandey
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/android/binderfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/android/binderfs.c b/drivers/android/binderfs.c index e218360de58d..7b76fefde3f8 100644 --- a/drivers/android/binderfs.c +++ b/drivers/android/binderfs.c @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: GPL-2.0 */ +// SPDX-License-Identifier: GPL-2.0 #include <linux/compiler_types.h> #include <linux/errno.h> |