diff options
author | Prabhakar Kushwaha <prabhakar@freescale.com> | 2015-11-04 12:25:57 +0530 |
---|---|---|
committer | York Sun <yorksun@freescale.com> | 2015-11-30 08:53:02 -0800 |
commit | 553d2751c126be342719df1c63752b8b69eb3172 (patch) | |
tree | 0cb301a7a85367ec610f7286ebdeeef174fc28f9 | |
parent | f9127a046da34a7bf20557b1ece59fdfb5c36881 (diff) | |
download | u-boot-553d2751c126be342719df1c63752b8b69eb3172.tar.gz u-boot-553d2751c126be342719df1c63752b8b69eb3172.tar.xz u-boot-553d2751c126be342719df1c63752b8b69eb3172.zip |
driver: net: fsl-mc: Increase MC command timeout
dpni_create API take takes more time as comapred to existing supported
APIs of MC Flib.
So increase MC command timeout.
Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>
-rw-r--r-- | drivers/net/fsl-mc/mc_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/fsl-mc/mc_sys.c b/drivers/net/fsl-mc/mc_sys.c index 2136670370..71e145649f 100644 --- a/drivers/net/fsl-mc/mc_sys.c +++ b/drivers/net/fsl-mc/mc_sys.c @@ -32,7 +32,7 @@ int mc_send_command(struct fsl_mc_io *mc_io, struct mc_command *cmd) { enum mc_cmd_status status; - int timeout = 6000; + int timeout = 12000; mc_write_command(mc_io->mmio_regs, cmd); |