commit | d6ec53e04bf7906a0fffd8f272d89ab4e04c2cd5 | [log] [tgz] |
---|---|---|
author | Matthijs Kooijman <matthijs@stdin.nl> | Fri Aug 30 18:45:15 2013 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Aug 30 14:14:52 2013 -0700 |
tree | a7b2507dc5a149e82cb76e42bfafec18c9fea055 | |
parent | 1c58ce133971e7159f51f331717a61632a2a3897 [diff] |
staging: dwc2: simplify register shift expressions This commit changes expressions from (val >> shift) & (mask >> shift) to (val & mask) >> shift. Signed-off-by: Matthijs Kooijman <matthijs@stdin.nl> Acked-by: Paul Zimmerman <paulz@synopsys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>