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>
This commit is contained in:
parent
6e8bd6e727
commit
ecd43c0d7e
2 changed files with 2 additions and 0 deletions
|
@ -60,6 +60,7 @@ static int uio_pdrv_probe(struct platform_device *pdev)
|
|||
uiomem->memtype = UIO_MEM_PHYS;
|
||||
uiomem->addr = r->start;
|
||||
uiomem->size = resource_size(r);
|
||||
uiomem->name = r->name;
|
||||
++uiomem;
|
||||
}
|
||||
|
||||
|
|
|
@ -172,6 +172,7 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev)
|
|||
uiomem->memtype = UIO_MEM_PHYS;
|
||||
uiomem->addr = r->start;
|
||||
uiomem->size = resource_size(r);
|
||||
uiomem->name = r->name;
|
||||
++uiomem;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue