From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from polaris.svanheule.net (polaris.svanheule.net [84.16.241.116]) (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 80D5A241695 for ; Fri, 20 Feb 2026 16:01:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=84.16.241.116 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771603282; cv=none; b=bmFKNEgb5+3IpLt/XYObuLIQyMK9BhptGhy++HZU6Gxo4CX2U0YQnn/DsekATa3uUq9h/fquPW187X6oUTbFDBxkIuCVks2Q1RccfM7rUSgOvnBmnbQraEaUAqoOJLFXdvy1PiaGIwr7CGLRRsUz582W0gho+/BK0loVnlgl5Sw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771603282; c=relaxed/simple; bh=Zj5EaXvU8Vt+Rjhf7cUNy+HANVKZwulpjToRm0i811w=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=BnMmwccHRQxGfvA0qpcnPIVqeAwwwWNtAiapWmig92PMX5P4/tdk9E0R+/E2gv9OF8PIkCwtgPZSIzGDzMYH2sgW+2CKSO5KAIFyUs/9jotJ7pusMirC4tFw/cWsUhMKazOYwAcI35FhrrdjMq6FESj6MH7eApwoA3GmqIZTv8g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=svanheule.net; spf=pass smtp.mailfrom=svanheule.net; dkim=pass (2048-bit key) header.d=svanheule.net header.i=@svanheule.net header.b=3ER9Pr0H; arc=none smtp.client-ip=84.16.241.116 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=svanheule.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=svanheule.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=svanheule.net header.i=@svanheule.net header.b="3ER9Pr0H" Received: from terra.vega.svanheule.net (2a02-1812-162c-8f00-1e2d-b404-3319-eba8.ip6.access.telenet.be [IPv6:2a02:1812:162c:8f00:1e2d:b404:3319:eba8]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: sander@svanheule.net) by polaris.svanheule.net (Postfix) with ESMTPSA id 142A66E8684; Fri, 20 Feb 2026 17:01:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=svanheule.net; s=mail1707; t=1771603280; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=jHHU4U6NHH4uHfAvqux32ikAVRablgjriyrPk/WGxNY=; b=3ER9Pr0H8zE7RM/HAjWxkPe0xpmk2oPpKYPcXVjGBWUvupLVcaFRpm++gGgvjwhq10ecIJ 6XQRwEVlztFghOLmJSo9RLJ0bbtYPu1atlaU1tadGf0Z7IP38nU6RfF2V4gizKmqMJKU9a mnJdFmhx/uMKCXi/OmIGyobEbULKlPL4Uf1Xe/d7AjvNcGT96ulM0yXR1b7TZPDGLhGHdZ k4U/wJbPV3BkJVBkjVDda+1+INZZm2ZNT3VjOI4a6a2qpTyHxYzBRp3yJwsiZf3yvb/i68 RdReMSSFWyiV98sNBHfDKsjBXBzoXevYLFAZfQvX6rgDtdCXHISqVzcCkhj/lw== From: Sander Vanheule To: Mark Brown Cc: linux-kernel@vger.kernel.org, Sander Vanheule Subject: [PATCH v2 1/2] regmap: sort header includes Date: Fri, 20 Feb 2026 17:01:11 +0100 Message-ID: <20260220160112.543391-1-sander@svanheule.net> X-Mailer: git-send-email 2.53.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sort the included headers to make spotting duplicates easier and avoid discussions on where to add new includes. Signed-off-by: Sander Vanheule --- New patch since v2 --- include/linux/regmap.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/linux/regmap.h b/include/linux/regmap.h index caff2240bdab..c8a6a05bdba1 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -10,15 +10,15 @@ * Author: Mark Brown */ -#include -#include -#include +#include #include #include -#include -#include -#include #include +#include +#include +#include +#include +#include struct module; struct clk; -- 2.53.0