All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] can: etas_es58x: use BITS_PER_TYPE() instead of manual calculation
@ 2022-02-12 13:07 Vincent Mailhol
  2022-02-12 16:02 ` Marc Kleine-Budde
  0 siblings, 1 reply; 2+ messages in thread
From: Vincent Mailhol @ 2022-02-12 13:07 UTC (permalink / raw)
  To: netdev, linux-can; +Cc: linux-kernel, Marc Kleine-Budde, Vincent Mailhol

The input to the GENMASK() macro was calculated by hand. Replaced it
with a dedicated macro: BITS_PER_TYPE() which does the exact same job.

Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
---
 drivers/net/can/usb/etas_es58x/es58x_fd.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/can/usb/etas_es58x/es58x_fd.c b/drivers/net/can/usb/etas_es58x/es58x_fd.c
index ec87126e1a7d..88d2540abbbe 100644
--- a/drivers/net/can/usb/etas_es58x/es58x_fd.c
+++ b/drivers/net/can/usb/etas_es58x/es58x_fd.c
@@ -69,7 +69,8 @@ static int es58x_fd_echo_msg(struct net_device *netdev,
 	int i, num_element;
 	u32 rcv_packet_idx;
 
-	const u32 mask = GENMASK(31, sizeof(echo_msg->packet_idx) * 8);
+	const u32 mask = GENMASK(BITS_PER_TYPE(mask) - 1,
+				 BITS_PER_TYPE(echo_msg->packet_idx));
 
 	num_element = es58x_msg_num_element(es58x_dev->dev,
 					    es58x_fd_urb_cmd->echo_msg,
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] can: etas_es58x: use BITS_PER_TYPE() instead of manual calculation
  2022-02-12 13:07 [PATCH] can: etas_es58x: use BITS_PER_TYPE() instead of manual calculation Vincent Mailhol
@ 2022-02-12 16:02 ` Marc Kleine-Budde
  0 siblings, 0 replies; 2+ messages in thread
From: Marc Kleine-Budde @ 2022-02-12 16:02 UTC (permalink / raw)
  To: Vincent Mailhol; +Cc: netdev, linux-can, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 610 bytes --]

On 12.02.2022 22:07:37, Vincent Mailhol wrote:
> The input to the GENMASK() macro was calculated by hand. Replaced it
> with a dedicated macro: BITS_PER_TYPE() which does the exact same job.
> 
> Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>

Thanks for the patch, applied to linux-can-next/testing.

regards,
Marc

-- 
Pengutronix e.K.                 | Marc Kleine-Budde           |
Embedded Linux                   | https://www.pengutronix.de  |
Vertretung West/Dortmund         | Phone: +49-231-2826-924     |
Amtsgericht Hildesheim, HRA 2686 | Fax:   +49-5121-206917-5555 |

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-12 16:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-12 13:07 [PATCH] can: etas_es58x: use BITS_PER_TYPE() instead of manual calculation Vincent Mailhol
2022-02-12 16:02 ` Marc Kleine-Budde

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.