From: Prabhakar Kushwaha Date: Wed, 4 Nov 2015 06:55:57 +0000 (+0530) Subject: driver: net: fsl-mc: Increase MC command timeout X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=553d2751c126be342719df1c63752b8b69eb3172;p=project%2Fbcm63xx%2Fu-boot.git 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 Reviewed-by: York Sun --- 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);