gov.h 376 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Common definitions for cpuidle governors. */
  3. #ifndef __CPUIDLE_GOVERNOR_H
  4. #define __CPUIDLE_GOVERNOR_H
  5. /*
  6. * Idle state target residency threshold used for deciding whether or not to
  7. * check the time till the closest expected timer event.
  8. */
  9. #define RESIDENCY_THRESHOLD_NS (15 * NSEC_PER_USEC)
  10. #endif /* __CPUIDLE_GOVERNOR_H */