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 103A44C6D; Tue, 26 Aug 2025 13:11:15 +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=1756213875; cv=none; b=gGiW+tWQMBsMQgizNpm98aBkPfhY6GHOtE25B/7iPNsnDxUamV/45afZb1tCvvVf5ihJFRvMsx+K3k5mUfqUDqXoI10YJkBlI6EhGEInyoWMHvbivmQR0LaxJMhgZjYH3gzEY6Boxw2F4F1XHyFGc3mYlklD3J/ieCxlu9v4jg8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756213875; c=relaxed/simple; bh=Nrdl1pXBFaqBcOTlEECAUlrrovYH08BVoXI5SxBxVCk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=n0eEW1mI0gexwG5rueCjXqhWgxOKm5qHw528cPxPTXR0lqV79Ybn1oEkjOiKAj7NopZCRPmL18NdBEP+h2oS9yxjnyN+DnGQ6GKRVWQ7IqheF3CJ08DAj7O7jr5zJQ0W9szMpViGR3UZMluV7P0pmt6SskDQ29Sa2g6Ayj8mYog= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Xvbuu6lb; 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="Xvbuu6lb" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 955FDC4CEF1; Tue, 26 Aug 2025 13:11:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1756213874; bh=Nrdl1pXBFaqBcOTlEECAUlrrovYH08BVoXI5SxBxVCk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Xvbuu6lb59h8P68AkMbhaqUjHpIB9ca/vkj8veieQBw2PWHkBMiGz4MU6Tl5nz8yw zUKvvT9+4TmclBkIBhHvpmikZxZ26b3+2byBh8Ax0HJgbwuLIqA27JxwvbV4eWSbuv hHH7DXsTAkSrOZqBMJA6pjRvcCoVrdvywp395elY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Victor Shih , Adrian Hunter , Ulf Hansson Subject: [PATCH 6.6 481/587] mmc: sdhci-pci-gli: GL9763e: Rename the gli_set_gl9763e() for consistency Date: Tue, 26 Aug 2025 13:10:30 +0200 Message-ID: <20250826111005.209193051@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250826110952.942403671@linuxfoundation.org> References: <20250826110952.942403671@linuxfoundation.org> User-Agent: quilt/0.68 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: Victor Shih commit 293ed0f5f34e1e9df888456af4b0a021f57b5f54 upstream. In preparation to fix replay timer timeout, rename the gli_set_gl9763e() to gl9763e_hw_setting() for consistency. Signed-off-by: Victor Shih Fixes: 1ae1d2d6e555 ("mmc: sdhci-pci-gli: Add Genesys Logic GL9763E support") Cc: stable@vger.kernel.org Acked-by: Adrian Hunter Link: https://lore.kernel.org/r/20250731065752.450231-3-victorshihgli@gmail.com Signed-off-by: Ulf Hansson Signed-off-by: Greg Kroah-Hartman --- drivers/mmc/host/sdhci-pci-gli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/drivers/mmc/host/sdhci-pci-gli.c +++ b/drivers/mmc/host/sdhci-pci-gli.c @@ -1343,7 +1343,7 @@ cleanup: return ret; } -static void gli_set_gl9763e(struct sdhci_pci_slot *slot) +static void gl9763e_hw_setting(struct sdhci_pci_slot *slot) { struct pci_dev *pdev = slot->chip->pdev; u32 value; @@ -1515,7 +1515,7 @@ static int gli_probe_slot_gl9763e(struct gli_pcie_enable_msi(slot); host->mmc_host_ops.hs400_enhanced_strobe = gl9763e_hs400_enhanced_strobe; - gli_set_gl9763e(slot); + gl9763e_hw_setting(slot); sdhci_enable_v4_mode(host); return 0;