enum tpm_timeout {
        TPM_TIMEOUT = 5,        /* msecs */
        TPM_TIMEOUT_RETRY = 100, /* msecs */
-       TPM_TIMEOUT_RANGE_US = 300      /* usecs */
+       TPM_TIMEOUT_RANGE_US = 300,     /* usecs */
+       TPM_TIMEOUT_POLL = 1    /* msecs */
 };
 
 /* TPM addresses */
 
 #include "tpm.h"
 #include "tpm_tis_core.h"
 
-/* This is a polling delay to check for status and burstcount.
- * As per ddwg input, expectation is that status check and burstcount
- * check should return within few usecs.
- */
-#define TPM_POLL_SLEEP 1  /* msec */
-
 static void tpm_tis_clkrun_enable(struct tpm_chip *chip, bool value);
 
 static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask,
                }
        } else {
                do {
-                       tpm_msleep(TPM_POLL_SLEEP);
+                       tpm_msleep(TPM_TIMEOUT_POLL);
                        status = chip->ops->status(chip);
                        if ((status & mask) == mask)
                                return 0;
                burstcnt = (value >> 8) & 0xFFFF;
                if (burstcnt)
                        return burstcnt;
-               tpm_msleep(TPM_POLL_SLEEP);
+               tpm_msleep(TPM_TIMEOUT_POLL);
        } while (time_before(jiffies, stop));
        return -EBUSY;
 }