From dd391917636054d873fb132a94ffbda16e128dcc Mon Sep 17 00:00:00 2001 From: Sivaram Nair Date: Wed, 6 Feb 2013 18:06:32 +0200 Subject: EDP: fixing bug with priority definitions The min and max priority constants are defined incorrectly (in the wrong order). This patch corrects it and updates the affected drivers and platform data. Change-Id: I94a628c4f4076d1c36dff1692f0427ad1f218fb5 Signed-off-by: Sivaram Nair (cherry picked from commit 3d2fe9f41fdd54d4c79b7202680e93de8debc8a1) Reviewed-on: http://git-master/r/198395 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Juha Tukkinen --- include/linux/edp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/linux/edp.h b/include/linux/edp.h index c5acab683df9..7a7207256372 100644 --- a/include/linux/edp.h +++ b/include/linux/edp.h @@ -22,8 +22,8 @@ #include #define EDP_NAME_LEN 16 -#define EDP_MIN_PRIO 0 -#define EDP_MAX_PRIO 19 +#define EDP_MIN_PRIO 19 +#define EDP_MAX_PRIO 0 struct edp_manager { char name[EDP_NAME_LEN]; -- cgit v1.2.3