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

Commit da0f09d9 authored by Osvaldo Banuelos's avatar Osvaldo Banuelos
Browse files

regulator: Update REGULATOR_EVENT_ENABLE mask value



REGULATOR_EVENT_PRE_VOLTAGE_CHANGE and REGULATOR_EVENT_ENABLE
currently share the same mask value resulting in a conflict.
Resolve this by using the largest 32-bit mask for
REGULATOR_EVENT_ENABLE to prevent future collisions.

Change-Id: I5aa25d2cebd12580db6a2bd69df68b7831619a75
Signed-off-by: default avatarOsvaldo Banuelos <osvaldob@codeaurora.org>
parent 4c5e5900
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ struct pre_voltage_change_data {
	unsigned long min_uV;
	unsigned long max_uV;
};
#define REGULATOR_EVENT_ENABLE			0x100
#define REGULATOR_EVENT_ENABLE			0x80000000

struct regulator;