Commit 49b47c9e authored by Gabriele Modena's avatar Gabriele Modena Committed by Greg Kroah-Hartman
Browse files

staging: wimax: fix block comment style check in op-rfkill.c



This commit fixes the following checkpatch.pl warning:

WARNING: Block comments use a trailing */ on a separate line
+		 * considering the radios are all off. */

Signed-off-by: default avatarGabriele Modena <gabriele.modena@gmail.com>
Link: https://lore.kernel.org/r/752f22ec19c8e5bc249589ca4c5edef770396aff.1615652628.git.gabriele.modena@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0102ecac
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -294,7 +294,8 @@ int wimax_rfkill(struct wimax_dev *wimax_dev, enum wimax_rf_state state)
		/* While initializing, < 1.4.3 wimax-tools versions use
		/* While initializing, < 1.4.3 wimax-tools versions use
		 * this call to check if the device is a valid WiMAX
		 * this call to check if the device is a valid WiMAX
		 * device; so we allow it to proceed always,
		 * device; so we allow it to proceed always,
		 * considering the radios are all off. */
		 * considering the radios are all off.
		 */
		if (result == -ENOMEDIUM && state == WIMAX_RF_QUERY)
		if (result == -ENOMEDIUM && state == WIMAX_RF_QUERY)
			result = WIMAX_RF_OFF << 1 | WIMAX_RF_OFF;
			result = WIMAX_RF_OFF << 1 | WIMAX_RF_OFF;
		goto error_not_ready;
		goto error_not_ready;