Re: [PATCH v2 1/3] mux: gpio: Use bitmap API instead of direct assignment

2021-04-02 Thread Greg Kroah-Hartman
On Wed, Mar 31, 2021 at 09:12:45AM +0200, Peter Rosin wrote: > Hi Greg, > > You can pick this series directly, right? I don't feel a compelling need to > add the patches to -next before you take them since they are simple enough... All now sucked in, thanks. greg k-h

Re: [PATCH v2 1/3] mux: gpio: Use bitmap API instead of direct assignment

2021-03-31 Thread Peter Rosin
Hi Greg, You can pick this series directly, right? I don't feel a compelling need to add the patches to -next before you take them since they are simple enough... And drivers/mux is otherwise quiet, as usual. Cheers, Peter On 2021-03-30 21:33, Andy Shevchenko wrote: > Assigning bitmaps like

[PATCH v2 1/3] mux: gpio: Use bitmap API instead of direct assignment

2021-03-30 Thread Andy Shevchenko
Assigning bitmaps like it's done in the driver might be error prone. Fix this by using bitmap API. Signed-off-by: Andy Shevchenko Acked-by: Peter Rosin --- v2: left blank line untouched (Peter) drivers/mux/gpio.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git