Commit 5cbb00cc authored by Fabian Frederick's avatar Fabian Frederick Committed by Greg Kroah-Hartman

lib/devres.c: fix checkpatch warnings

Fix 3 checkpatch warnings:
'ERROR: "foo * const * bar" should be "foo * const *bar"'

Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 60901320
...@@ -194,7 +194,7 @@ static int devm_ioport_map_match(struct device *dev, void *res, ...@@ -194,7 +194,7 @@ static int devm_ioport_map_match(struct device *dev, void *res,
* Managed ioport_map(). Map is automatically unmapped on driver * Managed ioport_map(). Map is automatically unmapped on driver
* detach. * detach.
*/ */
void __iomem * devm_ioport_map(struct device *dev, unsigned long port, void __iomem *devm_ioport_map(struct device *dev, unsigned long port,
unsigned int nr) unsigned int nr)
{ {
void __iomem **ptr, *addr; void __iomem **ptr, *addr;
...@@ -265,7 +265,7 @@ static void pcim_iomap_release(struct device *gendev, void *res) ...@@ -265,7 +265,7 @@ static void pcim_iomap_release(struct device *gendev, void *res)
* be safely called without context and guaranteed to succed once * be safely called without context and guaranteed to succed once
* allocated. * allocated.
*/ */
void __iomem * const * pcim_iomap_table(struct pci_dev *pdev) void __iomem * const *pcim_iomap_table(struct pci_dev *pdev)
{ {
struct pcim_iomap_devres *dr, *new_dr; struct pcim_iomap_devres *dr, *new_dr;
...@@ -290,7 +290,7 @@ EXPORT_SYMBOL(pcim_iomap_table); ...@@ -290,7 +290,7 @@ EXPORT_SYMBOL(pcim_iomap_table);
* Managed pci_iomap(). Map is automatically unmapped on driver * Managed pci_iomap(). Map is automatically unmapped on driver
* detach. * detach.
*/ */
void __iomem * pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen) void __iomem *pcim_iomap(struct pci_dev *pdev, int bar, unsigned long maxlen)
{ {
void __iomem **tbl; void __iomem **tbl;
......
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