On Mon, 2017-01-09 at 12:55 +, David Laight wrote:
> From: Joe Perches
> > Sent: 07 January 2017 18:33
> > Shifting and masking various types can be made a bit
> > simpler to read by using the available kernel macros.
>
> ...
> > - ew32(TDBAH, (tdba >> 32));
> > - ew32(TDBA
From: Joe Perches
> Sent: 07 January 2017 18:33
> Shifting and masking various types can be made a bit
> simpler to read by using the available kernel macros.
...
> - ew32(TDBAH, (tdba >> 32));
> - ew32(TDBAL, (tdba & 0xULL));
> + ew32(TDBAH, uppe
On Sat, 7 Jan 2017, Joe Perches wrote:
> Shifting and masking various types can be made a bit
> simpler to read by using the available kernel macros.
It looks much nicer to me, especially in the lower case, where there are
multiple ways to express the same thing.
julia
>
> Signed-off-by: Joe P