configuration should be done before release host wait

Signed-off-by: Jim Liu <jjl...@nuvoton.com>
---
 drivers/misc/npcm_host_intf.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/misc/npcm_host_intf.c b/drivers/misc/npcm_host_intf.c
index 0244e40457..79f57f57d8 100644
--- a/drivers/misc/npcm_host_intf.c
+++ b/drivers/misc/npcm_host_intf.c
@@ -50,9 +50,6 @@ static int npcm_host_intf_bind(struct udevice *dev)
        const char *type;
        int ret;
 
-       /* Release host wait */
-       setbits_8(SMC_CTL_REG_ADDR, SMC_CTL_HOSTWAIT);
-
        syscon = syscon_regmap_lookup_by_phandle(dev, "syscon");
        if (IS_ERR(syscon)) {
                dev_err(dev, "%s: unable to get syscon, dev %s\n", __func__, 
dev->name);
@@ -93,6 +90,9 @@ static int npcm_host_intf_bind(struct udevice *dev)
                regmap_update_bits(syscon, MFSEL1, MFSEL1_LPCSEL, 
MFSEL1_LPCSEL);
        }
 
+       /* Release host wait */
+       setbits_8(SMC_CTL_REG_ADDR, SMC_CTL_HOSTWAIT);
+
        return 0;
 }
 
-- 
2.17.1

Reply via email to