Lee, Chun-Yi 87ad8f
From: Tedd Ho-Jeong An <tedd.an@intel.com>
Lee, Chun-Yi 87ad8f
Date: Fri, 14 Jan 2022 17:03:29 -0800
Lee, Chun-Yi 87ad8f
Subject: Bluetooth: Remove kernel-doc style comment block
Lee, Chun-Yi 87ad8f
Patch-mainline: v5.18-rc1
Lee, Chun-Yi 87ad8f
Git-commit: a86974f75e8806bc357a9be02f9bde083f40b4ae
Lee, Chun-Yi 87ad8f
References: jsc#PED-1407
Lee, Chun-Yi 87ad8f
Lee, Chun-Yi 87ad8f
This patch changes the kernel-doc style comment block to common comment
Lee, Chun-Yi 87ad8f
block. These files don't support kernel-doc style so no need to use the
Lee, Chun-Yi 87ad8f
kernel-doc style. Also, they cause the warning when W=1 option is used
Lee, Chun-Yi 87ad8f
as below.
Lee, Chun-Yi 87ad8f
Lee, Chun-Yi 87ad8f
drivers/bluetooth/hci_ll.c:518: warning: Function parameter or member 'lldev' not described in 'download_firmware'
Lee, Chun-Yi 87ad8f
drivers/bluetooth/btmrvl_debugfs.c:29: warning: cannot understand function prototype: 'struct btmrvl_debugfs_data '
Lee, Chun-Yi 87ad8f
drivers/bluetooth/btmrvl_sdio.c:36: warning: expecting prototype for Marvell BT-over-SDIO driver(). Prototype was for VERSION() instead
Lee, Chun-Yi 87ad8f
Lee, Chun-Yi 87ad8f
Signed-off-by: Tedd Ho-Jeong An <tedd.an@intel.com>
Lee, Chun-Yi 87ad8f
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Lee, Chun-Yi 87ad8f
Acked-by: Lee, Chun-Yi <jlee@suse.com>
Lee, Chun-Yi 87ad8f
---
Lee, Chun-Yi 87ad8f
 drivers/bluetooth/btmrvl_debugfs.c |    2 +-
Lee, Chun-Yi 87ad8f
 drivers/bluetooth/btmrvl_sdio.c    |    2 +-
Lee, Chun-Yi 87ad8f
 drivers/bluetooth/hci_ll.c         |    2 +-
Lee, Chun-Yi 87ad8f
 3 files changed, 3 insertions(+), 3 deletions(-)
Lee, Chun-Yi 87ad8f
Lee, Chun-Yi 87ad8f
--- a/drivers/bluetooth/btmrvl_debugfs.c
Lee, Chun-Yi 87ad8f
+++ b/drivers/bluetooth/btmrvl_debugfs.c
Lee, Chun-Yi 87ad8f
@@ -1,4 +1,4 @@
Lee, Chun-Yi 87ad8f
-/**
Lee, Chun-Yi 87ad8f
+/*
Lee, Chun-Yi 87ad8f
  * Marvell Bluetooth driver: debugfs related functions
Lee, Chun-Yi 87ad8f
  *
Lee, Chun-Yi 87ad8f
  * Copyright (C) 2009, Marvell International Ltd.
Lee, Chun-Yi 87ad8f
--- a/drivers/bluetooth/btmrvl_sdio.c
Lee, Chun-Yi 87ad8f
+++ b/drivers/bluetooth/btmrvl_sdio.c
Lee, Chun-Yi 87ad8f
@@ -1,4 +1,4 @@
Lee, Chun-Yi 87ad8f
-/**
Lee, Chun-Yi 87ad8f
+/*
Lee, Chun-Yi 87ad8f
  * Marvell BT-over-SDIO driver: SDIO interface related functions.
Lee, Chun-Yi 87ad8f
  *
Lee, Chun-Yi 87ad8f
  * Copyright (C) 2009, Marvell International Ltd.
Lee, Chun-Yi 87ad8f
--- a/drivers/bluetooth/hci_ll.c
Lee, Chun-Yi 87ad8f
+++ b/drivers/bluetooth/hci_ll.c
Lee, Chun-Yi 87ad8f
@@ -509,7 +509,7 @@ static int send_command_from_firmware(st
Lee, Chun-Yi 87ad8f
 	return 0;
Lee, Chun-Yi 87ad8f
 }
Lee, Chun-Yi 87ad8f
 
Lee, Chun-Yi 87ad8f
-/**
Lee, Chun-Yi 87ad8f
+/*
Lee, Chun-Yi 87ad8f
  * download_firmware -
Lee, Chun-Yi 87ad8f
  *	internal function which parses through the .bts firmware
Lee, Chun-Yi 87ad8f
  *	script file intreprets SEND, DELAY actions only as of now