Commit 8aa29f19 authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: ufs: Fix kernel-doc errors and warnings

Avoid that the kernel-doc tool complains about mismatches between
kernel-doc headers and function definitions. Avoid that errors like the
following are reported when building the UFS driver with W=1:

drivers/scsi/ufs/tc-dwc-g210-pci.c:60: error: Cannot parse struct or union!
drivers/scsi/ufs/tc-dwc-g210-pltfrm.c:26: warning: cannot understand function prototype: 'struct ufs_hba_variant_ops tc_dwc_g210_20bit_pltfm_hba_vops = '
Signed-off-by: default avatarBart Van Assche <bart.vanassche@wdc.com>
Cc: Vivek Gautam <vivek.gautam@codeaurora.org>
Cc: Stanislav Nijnikov <stanislav.nijnikov@wdc.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent e0b14a4a
...@@ -51,7 +51,7 @@ static int tc_dwc_g210_pci_runtime_idle(struct device *dev) ...@@ -51,7 +51,7 @@ static int tc_dwc_g210_pci_runtime_idle(struct device *dev)
return ufshcd_runtime_idle(dev_get_drvdata(dev)); return ufshcd_runtime_idle(dev_get_drvdata(dev));
} }
/** /*
* struct ufs_hba_dwc_vops - UFS DWC specific variant operations * struct ufs_hba_dwc_vops - UFS DWC specific variant operations
*/ */
static struct ufs_hba_variant_ops tc_dwc_g210_pci_hba_vops = { static struct ufs_hba_variant_ops tc_dwc_g210_pci_hba_vops = {
...@@ -71,7 +71,7 @@ static void tc_dwc_g210_pci_shutdown(struct pci_dev *pdev) ...@@ -71,7 +71,7 @@ static void tc_dwc_g210_pci_shutdown(struct pci_dev *pdev)
/** /**
* tc_dwc_g210_pci_remove - de-allocate PCI/SCSI host and host memory space * tc_dwc_g210_pci_remove - de-allocate PCI/SCSI host and host memory space
* data structure memory * data structure memory
* @pdev - pointer to PCI handle * @pdev: pointer to PCI handle
*/ */
static void tc_dwc_g210_pci_remove(struct pci_dev *pdev) static void tc_dwc_g210_pci_remove(struct pci_dev *pdev)
{ {
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include "ufshcd-dwc.h" #include "ufshcd-dwc.h"
#include "tc-dwc-g210.h" #include "tc-dwc-g210.h"
/** /*
* UFS DWC specific variant operations * UFS DWC specific variant operations
*/ */
static struct ufs_hba_variant_ops tc_dwc_g210_20bit_pltfm_hba_vops = { static struct ufs_hba_variant_ops tc_dwc_g210_20bit_pltfm_hba_vops = {
......
...@@ -75,8 +75,7 @@ static struct ufs_hba_variant_ops ufs_intel_cnl_hba_vops = { ...@@ -75,8 +75,7 @@ static struct ufs_hba_variant_ops ufs_intel_cnl_hba_vops = {
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
/** /**
* ufshcd_pci_suspend - suspend power management function * ufshcd_pci_suspend - suspend power management function
* @pdev: pointer to PCI device handle * @dev: pointer to PCI device handle
* @state: power state
* *
* Returns 0 if successful * Returns 0 if successful
* Returns non-zero otherwise * Returns non-zero otherwise
...@@ -88,7 +87,7 @@ static int ufshcd_pci_suspend(struct device *dev) ...@@ -88,7 +87,7 @@ static int ufshcd_pci_suspend(struct device *dev)
/** /**
* ufshcd_pci_resume - resume power management function * ufshcd_pci_resume - resume power management function
* @pdev: pointer to PCI device handle * @dev: pointer to PCI device handle
* *
* Returns 0 if successful * Returns 0 if successful
* Returns non-zero otherwise * Returns non-zero otherwise
...@@ -126,7 +125,7 @@ static void ufshcd_pci_shutdown(struct pci_dev *pdev) ...@@ -126,7 +125,7 @@ static void ufshcd_pci_shutdown(struct pci_dev *pdev)
/** /**
* ufshcd_pci_remove - de-allocate PCI/SCSI host and host memory space * ufshcd_pci_remove - de-allocate PCI/SCSI host and host memory space
* data structure memory * data structure memory
* @pdev - pointer to PCI handle * @pdev: pointer to PCI handle
*/ */
static void ufshcd_pci_remove(struct pci_dev *pdev) static void ufshcd_pci_remove(struct pci_dev *pdev)
{ {
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment