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

Commit aff1bbc6 authored by Shreyas K K's avatar Shreyas K K
Browse files

drivers: soc: sdx_ext_ipc: Fix probe failure



Probe fails because of unsigned int. Change it to int.

Change-Id: I71b53a7ff74b0b2a64ceddb50e88018b1f90e154
Signed-off-by: default avatarShreyas K K <shrekk@codeaurora.org>
parent 77024cd7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ static const char * const gpio_map[] = {
};

struct gpio_cntrl {
	unsigned int gpios[NUM_GPIOS];
	int gpios[NUM_GPIOS];
	int status_irq;
	int wakeup_irq;
	int policy;