The hci_uart struct is already zeroed by kzalloc(). It's redundant to initialize hu->padding to 0. Signed-off-by: Liao Yuanhong <liaoyuanhong@xxxxxxxx> --- drivers/bluetooth/hci_ldisc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c index d0adae3267b4..e7a55c2e63f1 100644 --- a/drivers/bluetooth/hci_ldisc.c +++ b/drivers/bluetooth/hci_ldisc.c @@ -508,7 +508,6 @@ static int hci_uart_tty_open(struct tty_struct *tty) /* disable alignment support by default */ hu->alignment = 1; - hu->padding = 0; /* Use serial port speed as oper_speed */ hu->oper_speed = tty->termios.c_ospeed; -- 2.34.1