From nobody Sat Oct 4 21:01:19 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 8AE5C28DF01 for ; Wed, 13 Aug 2025 16:16:32 +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=1755101794; cv=none; b=dpaPr9Gfia7w8xHnRIXqGaeWqgPcdahK5u85AOSk4bg5ANdk10akXsa7WKAQav/gkEzxDzqpciOmshCyddEvktnjglG8V6/LA+Y6c29LJ5uHNUefzKA7zH6WGzg7sTw0zopZ9FNKaCUQTEWTYJwhcEp9kEU1OXawnc92Q1zSV+I= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755101794; c=relaxed/simple; bh=bAwuCStthKps7T2itHm+n0AuswFf928YP3Khh4V5u7M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=G/CHz0Zy4Zlu3bWLyvK8fISB/98blmpOvHxFBdIPPCBNCEjgbsVg0gnSOOF62FwsGJTIIvfr024ZihpFNaViODA5/mTTneF2YJJAVBmWjbsGdtwB05VSravrkGrE2mpKq70WMDawHVf0UgPbAVkrtVSxWgrgB+JDNIJkhN4ILc0= 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=MYaZunoB; 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="MYaZunoB" 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=+xDwDmsRX+gP2fiU/WhvnawyPXMFLcOwOSTBzoWba6I=; b=MYaZun oBF/dWAgwv37nH0Q82ZUv9A4ZZ1PF4SUKcsZssw1JzmeYMyktcdL0ijV881BtWyH OjCNkmhGrlVy8dH5S91pBsN5nFi7e46a6EZ+5HXv4IOrln2VypxZJieRzajw71bf Mwd32a7EtjIFPTHnva+WmV1d2sNsqLEdriXL9Z7qUpFUcusgWcsuh8uBdt+ckQ2I iyiWbbkL0CFq0hRHZvq3k4vNNrcbD1teJYZ5+H4uc18GmWlM79dRLa3hBFEVM7/1 FaPaynqFiFTyKGS34iukvaZR2X4lmjA1CtGz6EMJv8WIxUhe8IEr164PUgXJ4nHV 7mGyunONxQmMIOKQ== Received: (qmail 695309 invoked from network); 13 Aug 2025 18:16:20 +0200 Received: by mail.zeus03.de with UTF8SMTPSA (TLS_AES_256_GCM_SHA384 encrypted, authenticated); 13 Aug 2025 18:16:20 +0200 X-UD-Smtp-Session: l3s3148p1@2DIjekE8rJFtKLKq From: Wolfram Sang To: linux-kernel@vger.kernel.org Cc: Mark Brown , Wolfram Sang , Andrea della Porta , Linus Walleij , linux-gpio@vger.kernel.org Subject: [PATCH 13/21] pinctrl: remove unneeded 'fast_io' parameter in regmap_config Date: Wed, 13 Aug 2025 18:14:59 +0200 Message-ID: <20250813161517.4746-14-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 --- No dependencies, can be applied directly to the subsystem tree. Buildbot is happy, too. drivers/pinctrl/pinctrl-rp1.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/pinctrl/pinctrl-rp1.c b/drivers/pinctrl/pinctrl-rp1.c index dadafc935dbb..6699b36349d0 100644 --- a/drivers/pinctrl/pinctrl-rp1.c +++ b/drivers/pinctrl/pinctrl-rp1.c @@ -1627,7 +1627,6 @@ static const struct regmap_config rp1_pinctrl_regmap_= cfg =3D { .reg_bits =3D 32, .val_bits =3D 32, .reg_stride =3D 4, - .fast_io =3D true, .name =3D "rp1-pinctrl", }; =20 --=20 2.47.2