Re: [U-Boot] [PATCH v4 11/24] spi: mpc8xxx_spi: Use BIT macro

2015-10-22 Thread Tom Rini
On Fri, Oct 23, 2015 at 02:20:11AM +0530, Jagan Teki wrote: > Replace numerical bit shift with BIT macro in mpc8xxx_spi > > :%s/(1 << nr)/BIT(nr)/g > where nr = 0, 1, 2 31 > > Signed-off-by: Jagan Teki Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature

[U-Boot] [PATCH v4 11/24] spi: mpc8xxx_spi: Use BIT macro

2015-10-22 Thread Jagan Teki
Replace numerical bit shift with BIT macro in mpc8xxx_spi :%s/(1 << nr)/BIT(nr)/g where nr = 0, 1, 2 31 Signed-off-by: Jagan Teki --- drivers/spi/mpc8xxx_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/mpc8xxx_spi.c b/drivers/spi/mpc8xxx_spi.c index 0d