Re: [U-Boot] [PATCH 1/3] net: phy: realtek: Use the BIT() macro

2016-11-14 Thread Joe Hershberger
On Tue, Nov 8, 2016 at 10:38 AM, Olliver Schinagl wrote: > The BIT macro is the preferred method to set bits. > This patch adds the bit macro and converts bit invocations. > > Signed-off-by: Olliver Schinagl Acked-by: Joe Hershberger I can clean up the ';' inline. _

[U-Boot] [PATCH 1/3] net: phy: realtek: Use the BIT() macro

2016-11-08 Thread Olliver Schinagl
The BIT macro is the preferred method to set bits. This patch adds the bit macro and converts bit invocations. Signed-off-by: Olliver Schinagl --- drivers/net/phy/realtek.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/net/phy/realtek.c b/drivers/net/phy/realte