Skip to content

Commit f442631

Browse files
mnaraniMichal Simek
authored andcommitted
firmware: xilinx: Fix SD DLL node reset issue
Fix the SD DLL node reset issue where incorrect node is being referenced instead of SD DLL node. Fixes: 426c8d8 ("firmware: xilinx: Use APIs instead of IOCTLs") Signed-off-by: Manish Narani <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Michal Simek <[email protected]>
1 parent 09162bc commit f442631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/firmware/xilinx/zynqmp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ EXPORT_SYMBOL_GPL(zynqmp_pm_set_sd_tapdelay);
615615
*/
616616
int zynqmp_pm_sd_dll_reset(u32 node_id, u32 type)
617617
{
618-
return zynqmp_pm_invoke_fn(PM_IOCTL, node_id, IOCTL_SET_SD_TAPDELAY,
618+
return zynqmp_pm_invoke_fn(PM_IOCTL, node_id, IOCTL_SD_DLL_RESET,
619619
type, 0, NULL);
620620
}
621621
EXPORT_SYMBOL_GPL(zynqmp_pm_sd_dll_reset);

0 commit comments

Comments
 (0)