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

Commit f6c6c138 authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman
Browse files

greybus: svc: use bit-macro for cport flags



Use BIT-macro for cport flags.

Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 35a84ba7
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -12,9 +12,9 @@

#include "greybus.h"

#define CPORT_FLAGS_E2EFC       (1)
#define CPORT_FLAGS_CSD_N       (2)
#define CPORT_FLAGS_CSV_N       (4)
#define CPORT_FLAGS_E2EFC       BIT(0)
#define CPORT_FLAGS_CSD_N       BIT(1)
#define CPORT_FLAGS_CSV_N       BIT(2)

enum gb_svc_state {
	GB_SVC_STATE_RESET,