* [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c
@ 2023-03-08 3:45 Randy Dunlap
2023-03-08 16:18 ` Timur Tabi
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Randy Dunlap @ 2023-03-08 3:45 UTC (permalink / raw)
To: linux-kernel
Cc: Randy Dunlap, kernel test robot, Aditya Srivastava, Joerg Roedel,
Will Deacon, Robin Murphy, iommu, Timur Tabi, Varun Sethi,
Emil Medve
Fix kernel-doc warnings as reported by the kernel test robot:
fsl_pamu.c:192: warning: expecting prototype for pamu_config_paace(). Prototype was for pamu_config_ppaace() instead
fsl_pamu.c:239: warning: Function parameter or member 'omi_index' not described in 'get_ome_index'
fsl_pamu.c:239: warning: Function parameter or member 'dev' not described in 'get_ome_index'
fsl_pamu.c:332: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* Setup operation mapping and stash destinations for QMAN and QMAN portal.
fsl_pamu.c:361: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
* Setup the operation mapping table for various devices. This is a static
Fixes: 695093e38c3e ("iommu/fsl: Freescale PAMU driver and iommu implementation.")
Fixes: cd70d4659ff3 ("iommu/fsl: Various cleanups")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Link: lore.kernel.org/r/202302281151.B1WtZvSC-lkp@intel.com
Cc: Aditya Srivastava <yashsri421@gmail.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Will Deacon <will@kernel.org>
Cc: Robin Murphy <robin.murphy@arm.com>
Cc: iommu@lists.linux.dev
Cc: Timur Tabi <timur@tabi.org>
Cc: Varun Sethi <Varun.Sethi@freescale.com>
Cc: Emil Medve <Emilian.Medve@Freescale.com>
---
drivers/iommu/fsl_pamu.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff -- a/drivers/iommu/fsl_pamu.c b/drivers/iommu/fsl_pamu.c
--- a/drivers/iommu/fsl_pamu.c
+++ b/drivers/iommu/fsl_pamu.c
@@ -178,7 +178,7 @@ int pamu_update_paace_stash(int liodn, u
}
/**
- * pamu_config_paace() - Sets up PPAACE entry for specified liodn
+ * pamu_config_ppaace() - Sets up PPAACE entry for specified liodn
*
* @liodn: Logical IO device number
* @omi: Operation mapping index -- if ~omi == 0 then omi not defined
@@ -232,7 +232,8 @@ int pamu_config_ppaace(int liodn, u32 om
/**
* get_ome_index() - Returns the index in the operation mapping table
* for device.
- * @*omi_index: pointer for storing the index value
+ * @omi_index: pointer for storing the index value
+ * @dev: target device
*
*/
void get_ome_index(u32 *omi_index, struct device *dev)
@@ -328,7 +329,7 @@ found_cpu_node:
#define QMAN_PORTAL_PAACE 2
#define BMAN_PAACE 3
-/**
+/*
* Setup operation mapping and stash destinations for QMAN and QMAN portal.
* Memory accesses to QMAN and BMAN private memory need not be coherent, so
* clear the PAACE entry coherency attribute for them.
@@ -357,7 +358,7 @@ static void setup_qbman_paace(struct paa
}
}
-/**
+/*
* Setup the operation mapping table for various devices. This is a static
* table where each table index corresponds to a particular device. PAMU uses
* this table to translate device transaction to appropriate corenet
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c
2023-03-08 3:45 [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c Randy Dunlap
@ 2023-03-08 16:18 ` Timur Tabi
2023-03-09 2:10 ` Baolu Lu
2023-03-22 13:51 ` Joerg Roedel
2 siblings, 0 replies; 4+ messages in thread
From: Timur Tabi @ 2023-03-08 16:18 UTC (permalink / raw)
To: Randy Dunlap, linux-kernel
Cc: Aditya Srivastava, Joerg Roedel, Will Deacon, Robin Murphy, iommu
On 3/7/23 9:45 PM, Randy Dunlap wrote:
> Fix kernel-doc warnings as reported by the kernel test robot:
>
> fsl_pamu.c:192: warning: expecting prototype for pamu_config_paace(). Prototype was for pamu_config_ppaace() instead
> fsl_pamu.c:239: warning: Function parameter or member 'omi_index' not described in 'get_ome_index'
> fsl_pamu.c:239: warning: Function parameter or member 'dev' not described in 'get_ome_index'
> fsl_pamu.c:332: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
> * Setup operation mapping and stash destinations for QMAN and QMAN portal.
> fsl_pamu.c:361: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
> * Setup the operation mapping table for various devices. This is a static
>
> Fixes: 695093e38c3e ("iommu/fsl: Freescale PAMU driver and iommu implementation.")
> Fixes: cd70d4659ff3 ("iommu/fsl: Various cleanups")
Acked-by: Timur Tabi <timur@kernel.org>
One a side note, I'm pretty sure the @freescale.com addresses in the cc:
list are invalid, so I've removed them.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c
2023-03-08 3:45 [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c Randy Dunlap
2023-03-08 16:18 ` Timur Tabi
@ 2023-03-09 2:10 ` Baolu Lu
2023-03-22 13:51 ` Joerg Roedel
2 siblings, 0 replies; 4+ messages in thread
From: Baolu Lu @ 2023-03-09 2:10 UTC (permalink / raw)
To: Randy Dunlap, linux-kernel
Cc: baolu.lu, kernel test robot, Aditya Srivastava, Joerg Roedel,
Will Deacon, Robin Murphy, iommu, Timur Tabi, Varun Sethi,
Emil Medve
On 3/8/23 11:45 AM, Randy Dunlap wrote:
> Fix kernel-doc warnings as reported by the kernel test robot:
>
> fsl_pamu.c:192: warning: expecting prototype for pamu_config_paace(). Prototype was for pamu_config_ppaace() instead
> fsl_pamu.c:239: warning: Function parameter or member 'omi_index' not described in 'get_ome_index'
> fsl_pamu.c:239: warning: Function parameter or member 'dev' not described in 'get_ome_index'
> fsl_pamu.c:332: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
> * Setup operation mapping and stash destinations for QMAN and QMAN portal.
> fsl_pamu.c:361: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst
> * Setup the operation mapping table for various devices. This is a static
>
> Fixes: 695093e38c3e ("iommu/fsl: Freescale PAMU driver and iommu implementation.")
> Fixes: cd70d4659ff3 ("iommu/fsl: Various cleanups")
> Signed-off-by: Randy Dunlap<rdunlap@infradead.org>
> Reported-by: kernel test robot<lkp@intel.com>
> Link:lore.kernel.org/r/202302281151.B1WtZvSC-lkp@intel.com
> Cc: Aditya Srivastava<yashsri421@gmail.com>
> Cc: Joerg Roedel<joro@8bytes.org>
> Cc: Will Deacon<will@kernel.org>
> Cc: Robin Murphy<robin.murphy@arm.com>
> Cc:iommu@lists.linux.dev
> Cc: Timur Tabi<timur@tabi.org>
> Cc: Varun Sethi<Varun.Sethi@freescale.com>
> Cc: Emil Medve<Emilian.Medve@Freescale.com>
Reviewed-by: Lu Baolu <baolu.lu@linux.intel.com>
Best regards,
baolu
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c
2023-03-08 3:45 [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c Randy Dunlap
2023-03-08 16:18 ` Timur Tabi
2023-03-09 2:10 ` Baolu Lu
@ 2023-03-22 13:51 ` Joerg Roedel
2 siblings, 0 replies; 4+ messages in thread
From: Joerg Roedel @ 2023-03-22 13:51 UTC (permalink / raw)
To: Randy Dunlap
Cc: linux-kernel, kernel test robot, Aditya Srivastava, Will Deacon,
Robin Murphy, iommu, Timur Tabi, Varun Sethi, Emil Medve
On Tue, Mar 07, 2023 at 07:45:04PM -0800, Randy Dunlap wrote:
> drivers/iommu/fsl_pamu.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
Applied, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-22 13:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-08 3:45 [PATCH] iommu/fsl: fix all kernel-doc warnings in fsl_pamu.c Randy Dunlap
2023-03-08 16:18 ` Timur Tabi
2023-03-09 2:10 ` Baolu Lu
2023-03-22 13:51 ` Joerg Roedel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox