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

Commit 1425d5e7 authored by Vineet Gupta's avatar Vineet Gupta
Browse files

ARC: Fix WRITE_BCR



* There was obvious bit rot due to lack of use
* Old naming was confusing since BCR are read only

Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
parent 5971d815
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -173,11 +173,11 @@
	}						\
}

#define WRITE_BCR(reg, into)				\
#define WRITE_AUX(reg, into)				\
{							\
	unsigned int tmp;				\
	if (sizeof(tmp) == sizeof(into)) {		\
		tmp = (*(unsigned int *)(into));	\
		tmp = (*(unsigned int *)&(into));	\
		write_aux_reg(reg, tmp);		\
	} else  {					\
		extern void bogus_undefined(void);	\