Re: [PATCH V2] ARM: omap3_logic: Cleanup usage of MUX_VAL

2021-10-11 Thread Tom Rini
On Sun, Oct 03, 2021 at 07:31:14AM -0500, Adam Ford wrote: > The macro called MUX_VAL generates a writel instruction with > semicolon at the end. This table was written to use semicolons, > however one was missed: > >MUX_VAL(CP(SYS_BOOT2), (IEN | PTD | DIS | M4))/* GPIO_4 */ > >

[PATCH V2] ARM: omap3_logic: Cleanup usage of MUX_VAL

2021-10-03 Thread Adam Ford
The macro called MUX_VAL generates a writel instruction with semicolon at the end. This table was written to use semicolons, however one was missed: MUX_VAL(CP(SYS_BOOT2), (IEN | PTD | DIS | M4))/* GPIO_4 */ Since the extra semicolon is unnecessary with the use of the macro, remove