From: Neil Armstrong Date: Wed, 5 Oct 2016 07:33:31 +0000 (+0200) Subject: firmware: arm_scpi: increase MAX_DVFS_OPPS to 16 entries X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=bb789cd12cfc314458f8bd24548dbda3e683bc26;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git firmware: arm_scpi: increase MAX_DVFS_OPPS to 16 entries Since Amlogic SoCs supports more than 8 OPPs per domains, we need increase the OPP structure size. This patch increases the MAX_DVFS_OPPS to 16. Signed-off-by: Neil Armstrong Signed-off-by: Sudeep Holla --- diff --git a/drivers/firmware/arm_scpi.c b/drivers/firmware/arm_scpi.c index 9e9b022450eb..21542a32ad9f 100644 --- a/drivers/firmware/arm_scpi.c +++ b/drivers/firmware/arm_scpi.c @@ -63,7 +63,7 @@ #define SCPI_SLOT 0 #define MAX_DVFS_DOMAINS 8 -#define MAX_DVFS_OPPS 8 +#define MAX_DVFS_OPPS 16 #define DVFS_LATENCY(hdr) (le32_to_cpu(hdr) >> 16) #define DVFS_OPP_COUNT(hdr) ((le32_to_cpu(hdr) >> 8) & 0xff)