From patchwork Wed Feb 26 08:14:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Faiz Abbas X-Patchwork-Id: 236837 List-Id: U-Boot discussion From: faiz_abbas at ti.com (Faiz Abbas) Date: Wed, 26 Feb 2020 13:44:29 +0530 Subject: [PATCH v3 01/11] mmc: Add a saved_clock member In-Reply-To: <20200226081439.15994-1-faiz_abbas@ti.com> References: <20200226081439.15994-1-faiz_abbas@ti.com> Message-ID: <20200226081439.15994-2-faiz_abbas@ti.com> Add a saved_clock member to struct mmc to store the previous clock speed in the clock needs to be stopped for some time. Signed-off-by: Faiz Abbas Signed-off-by: Lokesh Vutla --- include/mmc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/mmc.h b/include/mmc.h index 71e2e1735a..d0fa7689c9 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -603,6 +603,7 @@ struct mmc { bool clk_disable; /* true if the clock can be turned off */ uint bus_width; uint clock; + uint saved_clock; enum mmc_voltage signal_voltage; uint card_caps; uint host_caps;