From nobody Sat Oct 4 21:01:20 2025 Received: from mail.zeus03.de (zeus03.de [194.117.254.33]) (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 A92AB299959 for ; Wed, 13 Aug 2025 16:16:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=194.117.254.33 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755101798; cv=none; b=Fk3jypLPC2hvtgipQ3DMHB+7s4sMu+vftkrbo6ACflZ071EQcTCXEUkqnUKLvVnBb1y9LHW7jfX1GWUBcCKnsKVcRwk6uFD+0qdcKMqTjEIuiz8xcsW+8DBuo148XTGzDpOj/7HUePcArGs+vnK9tdO4KhRdYNbvDlRv8omV3TI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755101798; c=relaxed/simple; bh=9Nb6DVoDSfEco5ow0BnUVRmx8Y/4ydTPPbL+WWkgjfM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=kf6Zgt+wOR7ywLjTNKWNsE9E00mGXvhzwiShVXVk1ECnLyaq04KpHHXSVHzkCTJt7wMl4wy8QCJXPw/7xHhrsaAZMhQl0SLwbz/M9EvdBuzdxCUwjWscW7khU4uM30EOxIOSMCSaKQOsnCFJlwleN0q6qwAfxkgZSXRRsd41c1Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com; spf=pass smtp.mailfrom=sang-engineering.com; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b=PmD+yIvx; arc=none smtp.client-ip=194.117.254.33 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sang-engineering.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sang-engineering.com header.i=@sang-engineering.com header.b="PmD+yIvx" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= sang-engineering.com; h=from:to:cc:subject:date:message-id :in-reply-to:references:mime-version:content-transfer-encoding; s=k1; bh=OYn6F3avixjtER6E0ohkY1hi7mX0fUkF12CsoRFU9/k=; b=PmD+yI vxRAKaGAXHba17GAjQPiz7VPVfkfzMuO6zPxsF1nZa9rVY9CeAaEqnG7TAD41SMS R5xL6MkdHdi+wybfV4oir8xCoY906vOOCo4nvVWtAGKXDTG7k0SFV0/lx269u0Ah zqrAAh0BIugpdiD/qAMcRQIIep/oYijYEChahm2FVrjxfgTd0nGNW12fr0T03NTz dd4LHlmwDBip4OJC+GrvXSJkA51U/V9Bxr6hH27NQWC75e4Nu6I1I0h8lTiU2zlK fugrvsMltZjD55+XQromft7/jqKW5muWgDoWzF7TJYYl2p4egtdSldez7VIOOwjJ +kBv/8blVSmjwt+g== Received: (qmail 695593 invoked from network); 13 Aug 2025 18:16:27 +0200 Received: by mail.zeus03.de with UTF8SMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 13 Aug 2025 18:16:27 +0200 X-UD-Smtp-Session: l3s3148p1@cDWKekE8xJFtKLKq From: Wolfram Sang To: linux-kernel@vger.kernel.org Cc: Mark Brown , Wolfram Sang , Alexandre Belloni , Neil Armstrong , Kevin Hilman , Jerome Brunet , Martin Blumenstingl , linux-rtc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-amlogic@lists.infradead.org Subject: [PATCH 17/21] rtc: remove unneeded 'fast_io' parameter in regmap_config Date: Wed, 13 Aug 2025 18:15:03 +0200 Message-ID: <20250813161517.4746-18-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.47.2 In-Reply-To: <20250813161517.4746-1-wsa+renesas@sang-engineering.com> References: <20250813161517.4746-1-wsa+renesas@sang-engineering.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" When using MMIO with regmap, fast_io is implied. No need to set it again. Signed-off-by: Wolfram Sang Reviewed-by: Neil Armstrong --- No dependencies, can be applied directly to the subsystem tree. Buildbot is happy, too. drivers/rtc/rtc-meson.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/rtc/rtc-meson.c b/drivers/rtc/rtc-meson.c index 47e9ebf58ffc..21eceb9e2e13 100644 --- a/drivers/rtc/rtc-meson.c +++ b/drivers/rtc/rtc-meson.c @@ -72,7 +72,6 @@ static const struct regmap_config meson_rtc_peripheral_re= gmap_config =3D { .val_bits =3D 32, .reg_stride =3D 4, .max_register =3D RTC_REG4, - .fast_io =3D true, }; =20 /* RTC front-end serialiser controls */ --=20 2.47.2