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

Commit 62f589c5 authored by Stoyan Gaydarov's avatar Stoyan Gaydarov Committed by Jesper Nilsson
Browse files

ARRAY_SIZE changes

These changes were a direct result of using a semantic patch
More information can be found at http://www.emn.fr/x-info/coccinelle/



Signed-off-by: default avatarStoyan Gaydarov <sgayda2@uiuc.edu>
Signed-off-by: default avatarJesper Nilsson <jesper.nilsson@axis.com>
parent 0395ac64
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ struct crisv32_ioport crisv32_ioports[] = {
	},
};

#define NBR_OF_PORTS sizeof(crisv32_ioports)/sizeof(struct crisv32_ioport)
#define NBR_OF_PORTS ARRAY_SIZE(crisv32_ioports)

struct crisv32_iopin crisv32_led_net0_green;
struct crisv32_iopin crisv32_led_net0_red;
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ struct crisv32_ioport crisv32_ioports[] = {
	}
};

#define NBR_OF_PORTS sizeof(crisv32_ioports)/sizeof(struct crisv32_ioport)
#define NBR_OF_PORTS ARRAY_SIZE(crisv32_ioports)

struct crisv32_iopin crisv32_led_net0_green;
struct crisv32_iopin crisv32_led_net0_red;