From nobody Mon Mar 23 21:28:13 2026 Received: from smtpout-02.galae.net (smtpout-02.galae.net [185.246.84.56]) (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 302A63AC0EB for ; Mon, 23 Mar 2026 15:03:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.84.56 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774278181; cv=none; b=XrUbl5HKEpMJPBBq9qAbtZO4aB9NNiH9m9mZ8E10O1Rdu8Rtyd1iK8AhZV59wedi93YGvwkYW3REZBXMs+U8ZSI75DYOn+oUYNPejMq9va+erCjMfhAxMzPpGY3WIXJNVXH7cqZea0EQQwTgIAM0Ot29QfUuKY45HIGE3+tYrCk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774278181; c=relaxed/simple; bh=SNBxAyWvlbMQrJWj5T5wU/4LhKzcMaoZk2JRIEOETlE=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=RDYUTWyyqWKOpiIbRHMWcSLTrrqUMZ/4FgfA8f9l/20VohKP8lRxJuET0GASzC+o6/JWE3ZLwwm3wGYgZZ1DHvYHIPHGnHq37VL7k5qwF8T7BJs+JLlOkA1A9ngPdSsBBwjum2bXhn2kAxkNqHY83WZf6mzNUfxC/hcoP+PEx+k= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=pmOmFRo/; arc=none smtp.client-ip=185.246.84.56 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="pmOmFRo/" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-02.galae.net (Postfix) with ESMTPS id EF7231A2FA3; Mon, 23 Mar 2026 15:02:58 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id C56715FEF6; Mon, 23 Mar 2026 15:02:58 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id C19BA10450FFB; Mon, 23 Mar 2026 16:02:56 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1774278177; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=oz2H0XLN3AH8WWxUIwmA2AJxtlH1SW2FIDqDP+bCqtQ=; b=pmOmFRo/o8H23SQfKGnLfOZIFvfUv01uLjr+1EPWeMTJ77CdTbTXknT64+jls/0YOirXni LyHI3r2cl9Ouk2xIzrtcOBCYdiWiUk4VEibzBIlaPCACKP0K/OnDXjgvEQjYlJTiTuJSP6 JSxUFO9S8zJPhc17xJu6v3r71gsVUs2aA36GMSYbEyfMTwTpF62LQ4RFunwh2wQgRYCkAa Jfqhl6jrW/jjXISGVRvnRpNvEkXQSXYbGSZ8zwFaAhOdkTZrYUVEIJt16J7eTIKaDGvf9s MFE8UprTLmsfE7QnOAyTYmuNPgbVmWCnB+e+HRq+dXceMzREHX8boYTxMyftPQ== From: Thomas Richard Date: Mon, 23 Mar 2026 16:02:44 +0100 Subject: [PATCH 3/8] mfd: omap-usb-host: Cleanup header includes Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20260323-omap4-fix-usb-support-v1-3-b668132124ac@bootlin.com> References: <20260323-omap4-fix-usb-support-v1-0-b668132124ac@bootlin.com> In-Reply-To: <20260323-omap4-fix-usb-support-v1-0-b668132124ac@bootlin.com> To: Aaro Koskinen , Andreas Kemnade , Kevin Hilman , Roger Quadros , Tony Lindgren , Liam Girdwood , Mark Brown , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Lee Jones Cc: Thomas Petazzoni , linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Thomas Richard X-Mailer: b4 0.14.2 X-Last-TLS-Session-Version: TLSv1.3 Remove unused includes (linux/kernel.h, linux/types.h and linux/delay.h). Sort the remaining ones alphabetically. Signed-off-by: Thomas Richard --- drivers/mfd/omap-usb-host.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/drivers/mfd/omap-usb-host.c b/drivers/mfd/omap-usb-host.c index 4d29a6e2ed87abf2a0f6d5a704525baaa6f0cbcb..4e066a17cef0400edbfcb3012a1= 6ceee06e52140 100644 --- a/drivers/mfd/omap-usb-host.c +++ b/drivers/mfd/omap-usb-host.c @@ -6,19 +6,15 @@ * Author: Keshava Munegowda * Author: Roger Quadros */ -#include -#include -#include -#include -#include #include #include -#include +#include +#include #include +#include #include #include #include -#include =20 #include "omap-usb.h" =20 --=20 2.53.0