2023-08-01 06:29:43

by Jiri Slaby

[permalink] [raw]
Subject: [PATCH 0/2] tty: remove casts from tty->disc_data

There are still two "casters" remaining. Fix them.

Jiri Slaby (SUSE) (2):
can: can327: remove casts from tty->disc_data
net: nfc: remove casts from tty->disc_data

drivers/net/can/can327.c | 8 ++++----
net/nfc/nci/uart.c | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)

--
2.41.0



2023-08-01 06:29:50

by Jiri Slaby

[permalink] [raw]
Subject: [PATCH 1/2] can: can327: remove casts from tty->disc_data

tty->disc_data is 'void *', so there is no need to cast from that.
Therefore remove the casts and assign the pointer directly.

Signed-off-by: Jiri Slaby (SUSE) <[email protected]>
Cc: Max Staudt <[email protected]>
Cc: Wolfgang Grandegger <[email protected]>
Cc: Marc Kleine-Budde <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Eric Dumazet <[email protected]>
Cc: Jakub Kicinski <[email protected]>
Cc: Paolo Abeni <[email protected]>
Cc: Dario Binacchi <[email protected]>
Cc: [email protected]
Cc: [email protected]
---
drivers/net/can/can327.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/net/can/can327.c b/drivers/net/can/can327.c
index dc7192ecb001..ee8a977acc8d 100644
--- a/drivers/net/can/can327.c
+++ b/drivers/net/can/can327.c
@@ -888,7 +888,7 @@ static bool can327_is_valid_rx_char(u8 c)
static void can327_ldisc_rx(struct tty_struct *tty, const unsigned char *cp,
const char *fp, int count)
{
- struct can327 *elm = (struct can327 *)tty->disc_data;
+ struct can327 *elm = tty->disc_data;
size_t first_new_char_idx;

if (elm->uart_side_failure)
@@ -990,7 +990,7 @@ static void can327_ldisc_tx_worker(struct work_struct *work)
/* Called by the driver when there's room for more data. */
static void can327_ldisc_tx_wakeup(struct tty_struct *tty)
{
- struct can327 *elm = (struct can327 *)tty->disc_data;
+ struct can327 *elm = tty->disc_data;

schedule_work(&elm->tx_work);
}
@@ -1067,7 +1067,7 @@ static int can327_ldisc_open(struct tty_struct *tty)
*/
static void can327_ldisc_close(struct tty_struct *tty)
{
- struct can327 *elm = (struct can327 *)tty->disc_data;
+ struct can327 *elm = tty->disc_data;

/* unregister_netdev() calls .ndo_stop() so we don't have to. */
unregister_candev(elm->dev);
@@ -1092,7 +1092,7 @@ static void can327_ldisc_close(struct tty_struct *tty)
static int can327_ldisc_ioctl(struct tty_struct *tty, unsigned int cmd,
unsigned long arg)
{
- struct can327 *elm = (struct can327 *)tty->disc_data;
+ struct can327 *elm = tty->disc_data;
unsigned int tmp;

switch (cmd) {
--
2.41.0


2023-08-01 13:04:08

by Simon Horman

[permalink] [raw]
Subject: Re: [PATCH 1/2] can: can327: remove casts from tty->disc_data

On Tue, Aug 01, 2023 at 08:22:36AM +0200, Jiri Slaby (SUSE) wrote:
> tty->disc_data is 'void *', so there is no need to cast from that.
> Therefore remove the casts and assign the pointer directly.
>
> Signed-off-by: Jiri Slaby (SUSE) <[email protected]>

Reviewed-by: Simon Horman <[email protected]>


2023-08-01 14:18:11

by Max Staudt

[permalink] [raw]
Subject: Re: [PATCH 1/2] can: can327: remove casts from tty->disc_data

On 8/1/23 15:22, Jiri Slaby (SUSE) wrote:
> tty->disc_data is 'void *', so there is no need to cast from that.
> Therefore remove the casts and assign the pointer directly.
>
> Signed-off-by: Jiri Slaby (SUSE) <[email protected]>

Thanks for spotting this!

Reviewed-by: Max Staudt <[email protected]>