Browse Source

uio_pdrv: set memory mapping name

If uio_pdrv[_genirq] is used, the uio maps have currently no name set.
This patch sets the uio_mem name to the name of the memory resource.

Signed-off-by: Manuel Traut <manut@linutronix.de>
Reported-by: Stefan Staedtler <stefan.staedtler@siemens.com>
Tested-by: Stefan Staedtler <stefan.staedtler@siemens.com>
Signed-off-by: "Hans J. Koch" <hjk@hansjkoch.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Manuel Traut 12 years ago
parent
commit
ecd43c0d7e
2 changed files with 2 additions and 0 deletions
  1. 1 0
      drivers/uio/uio_pdrv.c
  2. 1 0
      drivers/uio/uio_pdrv_genirq.c

+ 1 - 0
drivers/uio/uio_pdrv.c

@@ -60,6 +60,7 @@ static int uio_pdrv_probe(struct platform_device *pdev)
 		uiomem->memtype = UIO_MEM_PHYS;
 		uiomem->memtype = UIO_MEM_PHYS;
 		uiomem->addr = r->start;
 		uiomem->addr = r->start;
 		uiomem->size = resource_size(r);
 		uiomem->size = resource_size(r);
+		uiomem->name = r->name;
 		++uiomem;
 		++uiomem;
 	}
 	}
 
 

+ 1 - 0
drivers/uio/uio_pdrv_genirq.c

@@ -172,6 +172,7 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev)
 		uiomem->memtype = UIO_MEM_PHYS;
 		uiomem->memtype = UIO_MEM_PHYS;
 		uiomem->addr = r->start;
 		uiomem->addr = r->start;
 		uiomem->size = resource_size(r);
 		uiomem->size = resource_size(r);
+		uiomem->name = r->name;
 		++uiomem;
 		++uiomem;
 	}
 	}