Commit 8b3e1b79 authored by Madhukar Pappireddy's avatar Madhukar Pappireddy Committed by TrustedFirmware Code Review
Browse files

Merge "qti: spmi_arb: Fix NUM_APID and REG_APID_MAP() argument" into integration

parents d7439276 de67080f
......@@ -10,8 +10,8 @@
#include <spmi_arb.h>
#define REG_APID_MAP(apid) (0x0C440900U + 4U * i)
#define NUM_APID 0x80
#define REG_APID_MAP(apid) (0x0C440900U + sizeof(uint32_t) * apid)
#define NUM_APID ((0x1100U - 0x900U) / sizeof(uint32_t))
#define PPID_MASK (0xfffU << 8)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment