diff options
| author | Mark Gross <[email protected]> | 2008-02-04 22:30:09 -0800 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2008-02-05 09:44:22 -0800 |
| commit | f011e2e2df3393c16b0fdc48e855e909b7e021ee (patch) | |
| tree | 1ad56011597c739336d7068c8182fd9cfdddad5b /include/linux | |
| parent | d82b35186eaa816267f044bd70cc0acb3c7971a3 (diff) | |
latency.c: use QoS infrastructure
Replace latency.c use with pm_qos_params use.
Signed-off-by: mark gross <[email protected]>
Cc: "John W. Linville" <[email protected]>
Cc: Len Brown <[email protected]>
Cc: Jaroslav Kysela <[email protected]>
Cc: Takashi Iwai <[email protected]>
Cc: Arjan van de Ven <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/latency.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/linux/latency.h b/include/linux/latency.h deleted file mode 100644 index c08b52bb55b0..000000000000 --- a/include/linux/latency.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * latency.h: Explicit system-wide latency-expectation infrastructure - * - * (C) Copyright 2006 Intel Corporation - * Author: Arjan van de Ven <[email protected]> - * - */ - -#ifndef _INCLUDE_GUARD_LATENCY_H_ -#define _INCLUDE_GUARD_LATENCY_H_ - -#include <linux/notifier.h> - -void set_acceptable_latency(char *identifier, int usecs); -void modify_acceptable_latency(char *identifier, int usecs); -void remove_acceptable_latency(char *identifier); -void synchronize_acceptable_latency(void); -int system_latency_constraint(void); - -int register_latency_notifier(struct notifier_block * nb); -int unregister_latency_notifier(struct notifier_block * nb); - -#define INFINITE_LATENCY 1000000 - -#endif |