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 E6B847C6D4; Mon, 8 Apr 2024 13:34:21 +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=1712583262; cv=none; b=GQhHBxe9dIXu5jdMWpCDjnaaQSN/hcm73h0NX5zglXiizG2SIubqHzt1j07w7sg/hu1mnDUDR27HGo0bevZlzjVNncmtJaD++g4hwk9RiNLMYDKp+XtqUcyVK9WeXeXd0Bo1B03L+k5BFsLUa9sVgHp9m47dRLZJsI+CADFJFwI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712583262; c=relaxed/simple; bh=jsLbfJxp+SBExdJjWGHypuulvtM7qXNk8xf8nA9YRXs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Hq8wtLWiql9xUFutmmAGuZuOiP92lU/0gmbb2yqAIvdS7Zi4KYK16B181Ru9DvAvtAtnRb+HyG073f1Qw/eDM+xYwjKuzUJF7ktKF560CXrka2C/b77JRQkJQfnq71ZbZfezV03oCPVdhvFntnUNGgU8HxZAN7MHq03h5fY0tNk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pNzX/Sl9; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="pNzX/Sl9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6DD8DC433F1; Mon, 8 Apr 2024 13:34:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1712583261; bh=jsLbfJxp+SBExdJjWGHypuulvtM7qXNk8xf8nA9YRXs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pNzX/Sl9akprv0UK8pk8GlfI5tQ0y0LapsdY80M63WM4evSnpMGTGgxsUPG562MFm 7Sq14db6AmlzgN23Q37alMGUsk7YOY0Ik4jDiZUQ1F+v31wEavlPihtY5AQDrCraUD /hhVjtL6vaaa6dRG1JVrKkK2VPNz1oG3FSA6lrFg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Andi Shyti , Peter Griffin , Tudor Ambarus , Mark Brown , Sasha Levin Subject: [PATCH 6.6 175/252] spi: s3c64xx: sort headers alphabetically Date: Mon, 8 Apr 2024 14:57:54 +0200 Message-ID: <20240408125312.089201463@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240408125306.643546457@linuxfoundation.org> References: <20240408125306.643546457@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Tudor Ambarus [ Upstream commit a77ce80f63f06d7ae933c332ed77c79136fa69b0 ] Sorting headers alphabetically helps locating duplicates, and makes it easier to figure out where to insert new headers. Reviewed-by: Andi Shyti Reviewed-by: Peter Griffin Signed-off-by: Tudor Ambarus Link: https://lore.kernel.org/r/20240207120431.2766269-2-tudor.ambarus@linaro.org Signed-off-by: Mark Brown Stable-dep-of: a3d3eab627bb ("spi: s3c64xx: Use DMA mode from fifo size") Signed-off-by: Sasha Levin --- drivers/spi/spi-s3c64xx.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/drivers/spi/spi-s3c64xx.c b/drivers/spi/spi-s3c64xx.c index 432ec60d35684..26d389d95af92 100644 --- a/drivers/spi/spi-s3c64xx.c +++ b/drivers/spi/spi-s3c64xx.c @@ -3,19 +3,18 @@ // Copyright (c) 2009 Samsung Electronics Co., Ltd. // Jaswinder Singh -#include -#include -#include -#include #include +#include #include #include +#include +#include +#include +#include +#include #include #include #include -#include - -#include #define MAX_SPI_PORTS 12 #define S3C64XX_SPI_QUIRK_CS_AUTO (1 << 1) -- 2.43.0