Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 38f184a9 authored by Yan He's avatar Yan He Committed by Matt Wagantall
Browse files

msm: sps: correct the definition of invalid address



Address 0 is a valid physical address that drivers can get during
memory request. Correct the definition of invalid address in SPS
driver.

Change-Id: I6f39fb21782871092b83476f848ade1591e05450
Signed-off-by: default avatarYan He <yanhe@codeaurora.org>
parent fdfbd395
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@
#define SPS_IRQ_INVALID          0

/* Invalid address value */
#define SPS_ADDR_INVALID      ((unsigned long)0)
#define SPS_ADDR_INVALID      ((unsigned long)0xDEADBEEF)

/* Invalid peripheral device enumeration class */
#define SPS_CLASS_INVALID     ((unsigned long)-1)