2024-01-11 16:29:11

by Bjorn Helgaas

[permalink] [raw]
Subject: [PATCH] PCI: Fix kernel-doc issues

From: Bjorn Helgaas <[email protected]>

Fix kernel-doc issues reported by
"find include -name \*pci\* | xargs scripts/kernel-doc -none":

include/linux/pci.h:731: warning: Function parameter or member 'pdev' not described in 'pci_is_vga'
include/linux/pci-epc.h:154: warning: Function parameter or member 'list_lock' not described in 'pci_epc'
include/linux/pci-epf.h:83: warning: expecting prototype for struct pci_epf_event_ops. Prototype was for struct pci_epc_event_ops instead

Signed-off-by: Bjorn Helgaas <[email protected]>
---
include/linux/pci-epc.h | 2 +-
include/linux/pci-epf.h | 2 +-
include/linux/pci.h | 1 +
3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/linux/pci-epc.h b/include/linux/pci-epc.h
index 5cb694031072..bfe41b03b70c 100644
--- a/include/linux/pci-epc.h
+++ b/include/linux/pci-epc.h
@@ -122,7 +122,7 @@ struct pci_epc_mem {
* struct pci_epc - represents the PCI EPC device
* @dev: PCI EPC device
* @pci_epf: list of endpoint functions present in this EPC device
- * list_lock: Mutex for protecting pci_epf list
+ * @list_lock: Mutex for protecting pci_epf list
* @ops: function pointers for performing endpoint operations
* @windows: array of address space of the endpoint controller
* @mem: first window of the endpoint controller, which corresponds to
diff --git a/include/linux/pci-epf.h b/include/linux/pci-epf.h
index 3f44b6aec477..92d0b71d33d7 100644
--- a/include/linux/pci-epf.h
+++ b/include/linux/pci-epf.h
@@ -68,7 +68,7 @@ struct pci_epf_ops {
};

/**
- * struct pci_epf_event_ops - Callbacks for capturing the EPC events
+ * struct pci_epc_event_ops - Callbacks for capturing the EPC events
* @core_init: Callback for the EPC initialization complete event
* @link_up: Callback for the EPC link up event
* @link_down: Callback for the EPC link down event
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 1a89dc66f89a..eb45087d7e00 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -715,6 +715,7 @@ static inline bool pci_is_bridge(struct pci_dev *dev)

/**
* pci_is_vga - check if the PCI device is a VGA device
+ * @pdev: PCI device
*
* The PCI Code and ID Assignment spec, r1.15, secs 1.4 and 1.1, define
* VGA Base Class and Sub-Classes:
--
2.34.1



2024-01-12 00:00:39

by Randy Dunlap

[permalink] [raw]
Subject: Re: [PATCH] PCI: Fix kernel-doc issues



On 1/11/24 08:28, Bjorn Helgaas wrote:
> From: Bjorn Helgaas <[email protected]>
>
> Fix kernel-doc issues reported by
> "find include -name \*pci\* | xargs scripts/kernel-doc -none":
>
> include/linux/pci.h:731: warning: Function parameter or member 'pdev' not described in 'pci_is_vga'
> include/linux/pci-epc.h:154: warning: Function parameter or member 'list_lock' not described in 'pci_epc'
> include/linux/pci-epf.h:83: warning: expecting prototype for struct pci_epf_event_ops. Prototype was for struct pci_epc_event_ops instead
>
> Signed-off-by: Bjorn Helgaas <[email protected]>

Acked-by: Randy Dunlap <[email protected]>
Tested-by: Randy Dunlap <[email protected]>

Thanks.

> ---
> include/linux/pci-epc.h | 2 +-
> include/linux/pci-epf.h | 2 +-
> include/linux/pci.h | 1 +
> 3 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/pci-epc.h b/include/linux/pci-epc.h
> index 5cb694031072..bfe41b03b70c 100644
> --- a/include/linux/pci-epc.h
> +++ b/include/linux/pci-epc.h
> @@ -122,7 +122,7 @@ struct pci_epc_mem {
> * struct pci_epc - represents the PCI EPC device
> * @dev: PCI EPC device
> * @pci_epf: list of endpoint functions present in this EPC device
> - * list_lock: Mutex for protecting pci_epf list
> + * @list_lock: Mutex for protecting pci_epf list
> * @ops: function pointers for performing endpoint operations
> * @windows: array of address space of the endpoint controller
> * @mem: first window of the endpoint controller, which corresponds to
> diff --git a/include/linux/pci-epf.h b/include/linux/pci-epf.h
> index 3f44b6aec477..92d0b71d33d7 100644
> --- a/include/linux/pci-epf.h
> +++ b/include/linux/pci-epf.h
> @@ -68,7 +68,7 @@ struct pci_epf_ops {
> };
>
> /**
> - * struct pci_epf_event_ops - Callbacks for capturing the EPC events
> + * struct pci_epc_event_ops - Callbacks for capturing the EPC events
> * @core_init: Callback for the EPC initialization complete event
> * @link_up: Callback for the EPC link up event
> * @link_down: Callback for the EPC link down event
> diff --git a/include/linux/pci.h b/include/linux/pci.h
> index 1a89dc66f89a..eb45087d7e00 100644
> --- a/include/linux/pci.h
> +++ b/include/linux/pci.h
> @@ -715,6 +715,7 @@ static inline bool pci_is_bridge(struct pci_dev *dev)
>
> /**
> * pci_is_vga - check if the PCI device is a VGA device
> + * @pdev: PCI device
> *
> * The PCI Code and ID Assignment spec, r1.15, secs 1.4 and 1.1, define
> * VGA Base Class and Sub-Classes:

--
#Randy

2024-01-12 02:35:20

by Sui Jingfeng

[permalink] [raw]
Subject: Re: [PATCH] PCI: Fix kernel-doc issues

Hi,


On 2024/1/12 00:28, Bjorn Helgaas wrote:
> From: Bjorn Helgaas <[email protected]>
>
> Fix kernel-doc issues reported by
> "find include -name \*pci\* | xargs scripts/kernel-doc -none":
>
> include/linux/pci.h:731: warning: Function parameter or member 'pdev' not described in 'pci_is_vga'
> include/linux/pci-epc.h:154: warning: Function parameter or member 'list_lock' not described in 'pci_epc'
> include/linux/pci-epf.h:83: warning: expecting prototype for struct pci_epf_event_ops. Prototype was for struct pci_epc_event_ops instead


Thanks a lot for the fix.


> Signed-off-by: Bjorn Helgaas <[email protected]>


Acked-by: Sui Jingfeng <[email protected]>


2024-01-12 05:22:16

by Manivannan Sadhasivam

[permalink] [raw]
Subject: Re: [PATCH] PCI: Fix kernel-doc issues

On Thu, Jan 11, 2024 at 10:28:50AM -0600, Bjorn Helgaas wrote:
> From: Bjorn Helgaas <[email protected]>
>
> Fix kernel-doc issues reported by
> "find include -name \*pci\* | xargs scripts/kernel-doc -none":
>
> include/linux/pci.h:731: warning: Function parameter or member 'pdev' not described in 'pci_is_vga'
> include/linux/pci-epc.h:154: warning: Function parameter or member 'list_lock' not described in 'pci_epc'
> include/linux/pci-epf.h:83: warning: expecting prototype for struct pci_epf_event_ops. Prototype was for struct pci_epc_event_ops instead
>
> Signed-off-by: Bjorn Helgaas <[email protected]>

Reviewed-by: Manivannan Sadhasivam <[email protected]>

- Mani

> ---
> include/linux/pci-epc.h | 2 +-
> include/linux/pci-epf.h | 2 +-
> include/linux/pci.h | 1 +
> 3 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/pci-epc.h b/include/linux/pci-epc.h
> index 5cb694031072..bfe41b03b70c 100644
> --- a/include/linux/pci-epc.h
> +++ b/include/linux/pci-epc.h
> @@ -122,7 +122,7 @@ struct pci_epc_mem {
> * struct pci_epc - represents the PCI EPC device
> * @dev: PCI EPC device
> * @pci_epf: list of endpoint functions present in this EPC device
> - * list_lock: Mutex for protecting pci_epf list
> + * @list_lock: Mutex for protecting pci_epf list
> * @ops: function pointers for performing endpoint operations
> * @windows: array of address space of the endpoint controller
> * @mem: first window of the endpoint controller, which corresponds to
> diff --git a/include/linux/pci-epf.h b/include/linux/pci-epf.h
> index 3f44b6aec477..92d0b71d33d7 100644
> --- a/include/linux/pci-epf.h
> +++ b/include/linux/pci-epf.h
> @@ -68,7 +68,7 @@ struct pci_epf_ops {
> };
>
> /**
> - * struct pci_epf_event_ops - Callbacks for capturing the EPC events
> + * struct pci_epc_event_ops - Callbacks for capturing the EPC events
> * @core_init: Callback for the EPC initialization complete event
> * @link_up: Callback for the EPC link up event
> * @link_down: Callback for the EPC link down event
> diff --git a/include/linux/pci.h b/include/linux/pci.h
> index 1a89dc66f89a..eb45087d7e00 100644
> --- a/include/linux/pci.h
> +++ b/include/linux/pci.h
> @@ -715,6 +715,7 @@ static inline bool pci_is_bridge(struct pci_dev *dev)
>
> /**
> * pci_is_vga - check if the PCI device is a VGA device
> + * @pdev: PCI device
> *
> * The PCI Code and ID Assignment spec, r1.15, secs 1.4 and 1.1, define
> * VGA Base Class and Sub-Classes:
> --
> 2.34.1
>
>

--
மணிவண்ணன் சதாசிவம்

2024-01-12 17:10:05

by Bjorn Helgaas

[permalink] [raw]
Subject: Re: [PATCH] PCI: Fix kernel-doc issues

On Thu, Jan 11, 2024 at 10:28:50AM -0600, Bjorn Helgaas wrote:
> From: Bjorn Helgaas <[email protected]>
>
> Fix kernel-doc issues reported by
> "find include -name \*pci\* | xargs scripts/kernel-doc -none":
>
> include/linux/pci.h:731: warning: Function parameter or member 'pdev' not described in 'pci_is_vga'
> include/linux/pci-epc.h:154: warning: Function parameter or member 'list_lock' not described in 'pci_epc'
> include/linux/pci-epf.h:83: warning: expecting prototype for struct pci_epf_event_ops. Prototype was for struct pci_epc_event_ops instead
>
> Signed-off-by: Bjorn Helgaas <[email protected]>

Applied with Randy's Acked-by and Tested-by for v6.8. Thanks for the
other replies; I would certainly add them but for the fact that I've
already tagged what I intend to ask Linus to pull for v6.8.

Bjorn