mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-16 09:07:45 +07:00
[ARM] 4641/2: netX: fix kobject_name type
With commit 5984a2fc7e
kobject_name() is
correctly being used to access the name field of kobj, but that function
needs a pointer to a kobject, not the kobject itself.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
c617360afa
commit
93e29a2eca
@ -190,15 +190,15 @@ struct xc *request_xc(int xcno, struct device *dev)
|
|||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
if (!request_mem_region
|
if (!request_mem_region
|
||||||
(NETX_PA_XPEC(xcno), XPEC_MEM_SIZE, kobject_name(dev->kobj)))
|
(NETX_PA_XPEC(xcno), XPEC_MEM_SIZE, kobject_name(&dev->kobj)))
|
||||||
goto exit_free;
|
goto exit_free;
|
||||||
|
|
||||||
if (!request_mem_region
|
if (!request_mem_region
|
||||||
(NETX_PA_XMAC(xcno), XMAC_MEM_SIZE, kobject_name(dev->kobj)))
|
(NETX_PA_XMAC(xcno), XMAC_MEM_SIZE, kobject_name(&dev->kobj)))
|
||||||
goto exit_release_1;
|
goto exit_release_1;
|
||||||
|
|
||||||
if (!request_mem_region
|
if (!request_mem_region
|
||||||
(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE, kobject_name(dev->kobj)))
|
(SRAM_INTERNAL_PHYS(xcno), SRAM_MEM_SIZE, kobject_name(&dev->kobj)))
|
||||||
goto exit_release_2;
|
goto exit_release_2;
|
||||||
|
|
||||||
x->xpec_base = (void * __iomem)io_p2v(NETX_PA_XPEC(xcno));
|
x->xpec_base = (void * __iomem)io_p2v(NETX_PA_XPEC(xcno));
|
||||||
|
Loading…
Reference in New Issue
Block a user