From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3AFF3334C1D; Mon, 11 May 2026 07:15:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778483745; cv=none; b=WouFRL6+ktRUW3A8nvBoukH5M7T0EP8Of6BM5tM8gCFspmNLevOy9morARf13TbDMwH8I5DigAwkGSKoclielX0wwn3CpxFO/Tx/kZhX6FU3/YYpyneOEpUwDuLGivdBDfghy3C8mMCH2SPmzECSBIO99z8yYaYhNkgCMDByFHU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778483745; c=relaxed/simple; bh=g4WiFbW4rFM0ssE0TY4zoMGdOT55hNU6u5+qQRhpHjg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=E+RLyfTZuyLOxVemQcFWLLsiV7SxmVh5HneFjy5tzYRl+fdps/q4Nz8mcHmouprejuzri1gC1AKPQ93clrgZPcg8bohUKOeVvEbT2T1AypkhgennNvOC+1/r7J+chzPZ69b3wYJo4uXBMeD+YpXKXkjg1EuHSNkeNMRzLvPRGQU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=TP7uthDL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="TP7uthDL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F04D1C2BCF5; Mon, 11 May 2026 07:15:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778483745; bh=g4WiFbW4rFM0ssE0TY4zoMGdOT55hNU6u5+qQRhpHjg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TP7uthDLNIRLJ0D5NXD3obNeJrSByvEGP6ZwkBXoOH7J3l0ZCskKkgHZ7ioukAMP2 ag7+EamRLv2ujcivwotPiZ+UrOKame8NWG4QNRg2TVS3CZzgoO1WwFGLRHDMOmUfDN 9iOzEJmJX+NBbvGkf6fDPmdX2aFGeTK09v2SOlm6x9hSgLOgSGU4d+01kFmiGZQKfb qULS6p/D+J5CAY0Zmyf/Fbza/1f7MBlloy/XHvP8+KUmQSeelRslils7SmuTRNg1sj B4RpAzisanoR5/g6hx0wdEIbsp3epK53aGCk71iYM1UilaapsiWPtUuwOSsRw59WrS 8FpD01l0JawHQ== Received: from johan by xi.lan with local (Exim 4.98.2) (envelope-from ) id 1wMKre-00000002ZCa-33ab; Mon, 11 May 2026 09:15:42 +0200 From: Johan Hovold To: Johan Hovold Cc: Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 8/8] USB: serial: whiteheat: drop termbits include Date: Mon, 11 May 2026 09:14:48 +0200 Message-ID: <20260511071448.611875-9-johan@kernel.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260511071448.611875-1-johan@kernel.org> References: <20260511071448.611875-1-johan@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit The termios definitions are provided by the termios.h header file which is included by tty.h so drop the redundant asm/termbits.h include directive. Signed-off-by: Johan Hovold --- drivers/usb/serial/whiteheat.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/usb/serial/whiteheat.c b/drivers/usb/serial/whiteheat.c index 106e9b5443d3..a2d83f69e00e 100644 --- a/drivers/usb/serial/whiteheat.c +++ b/drivers/usb/serial/whiteheat.c @@ -19,7 +19,6 @@ #include #include #include -#include #include #include #include -- 2.53.0