Re: [Qemu-devel] [PATCH v3] register: fix incorrect read mask

2017-02-15 Thread Michael Tokarev
15.02.2017 01:55, Philippe Mathieu-Daudé wrote: > The register_read() and register_write() functions expect a bitmask argument. > To avoid duplicated code, a new inlined function register_enabled_mask() is > introduced. Applied to -trivial, thanks! /mjt

[Qemu-devel] [PATCH v3] register: fix incorrect read mask

2017-02-14 Thread Philippe Mathieu-Daudé
The register_read() and register_write() functions expect a bitmask argument. To avoid duplicated code, a new inlined function register_enabled_mask() is introduced. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Alistair Francis --- v3: clarify functions affected in the commit message. v