diff options
author | Youri Querry <youri.querry_1@nxp.com> | 2019-03-11 18:30:48 +0100 |
---|---|---|
committer | Li Yang <leoyang.li@nxp.com> | 2019-05-20 21:28:15 +0200 |
commit | d31beda2bcea55461289ebe73fb7fe11658b1c45 (patch) | |
tree | de007a5f46ac373c0d7aa8347709bee0c4b754fc /drivers/soc/fsl | |
parent | soc: fsl: add DPAA2 console support (diff) | |
download | linux-d31beda2bcea55461289ebe73fb7fe11658b1c45.tar.xz linux-d31beda2bcea55461289ebe73fb7fe11658b1c45.zip |
soc: fsl: dpio: Increase timeout for QBMan Management Commands
The timeout for QBMan Management Commands can falsely trigger on a
busy system. This patch doubles the timeout to avoid the
false error reports
Signed-off-by: Youri Querry <youri.querry_1@nxp.com>
Signed-off-by: Roy Pledge <roy.pledge@nxp.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
Diffstat (limited to 'drivers/soc/fsl')
-rw-r--r-- | drivers/soc/fsl/dpio/qbman-portal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/fsl/dpio/qbman-portal.h b/drivers/soc/fsl/dpio/qbman-portal.h index fa35fc1afeaa..80e55abff16b 100644 --- a/drivers/soc/fsl/dpio/qbman-portal.h +++ b/drivers/soc/fsl/dpio/qbman-portal.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) */ /* * Copyright (C) 2014-2016 Freescale Semiconductor, Inc. - * Copyright 2016 NXP + * Copyright 2016-2019 NXP * */ #ifndef __FSL_QBMAN_PORTAL_H @@ -428,7 +428,7 @@ static inline int qbman_swp_CDAN_set_context_enable(struct qbman_swp *s, static inline void *qbman_swp_mc_complete(struct qbman_swp *swp, void *cmd, u8 cmd_verb) { - int loopvar = 1000; + int loopvar = 2000; qbman_swp_mc_submit(swp, cmd, cmd_verb); |