diff options
author | Himadri Pandya <himadri18.07@gmail.com> | 2019-05-02 15:34:12 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-02 19:43:16 +0200 |
commit | 2d394ab79b9d53e104c6071f6e0ecf97e851b6d0 (patch) | |
tree | 44483654f5a74ed65fbc81e85a1c021f82f13f7e /drivers/staging | |
parent | 0580db2cb6b300708f5f3dca8b8fa79b04433037 (diff) |
staging: wlan-ng: Fix improper SPDX comment style
The SPDX license identifier should have the form
// SPDX-License-Identifier: <SPDX License Expression>
for a .c source file. File hfa384x_usb.c has instead the form
/* SPDX-License-Identifier: <SPDX License Expression> */
which is the form for C header files. Hence this patch corrects it.
Issue identified by checkpatch.
Signed-off-by: Himadri Pandya <himadri18.07@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/wlan-ng/hfa384x_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c index 81a6b0324641..6fde75d4f064 100644 --- a/drivers/staging/wlan-ng/hfa384x_usb.c +++ b/drivers/staging/wlan-ng/hfa384x_usb.c @@ -1,4 +1,4 @@ -/* SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1) */ +// SPDX-License-Identifier: (GPL-2.0 OR MPL-1.1) /* src/prism2/driver/hfa384x_usb.c * * Functions that talk to the USB variant of the Intersil hfa384x MAC |