aboutsummaryrefslogtreecommitdiff
path: root/i18n/fr_FR/projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch
diff options
context:
space:
mode:
authorLibreboot Contributor <contributor@libreboot.org>2020-04-02 20:59:23 +0200
committerLibreboot Contributor <contributor@libreboot.org>2020-04-02 20:59:43 +0200
commita2f4bef6de0e1f5770d489e861c78890f81229c1 (patch)
treebc74ce87d44cfcae1eecff62c0fbf6a97b1812fc /i18n/fr_FR/projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch
parentc6cb6cf4769cd535eee9abfd41fbf717a51d067c (diff)
downloadlibrebootfr-a2f4bef6de0e1f5770d489e861c78890f81229c1.tar.gz
librebootfr-a2f4bef6de0e1f5770d489e861c78890f81229c1.zip
link to french version of gplv3 at the top of i18n/fr_FR/COPYING . Also, we remove files that we haven't translated yet, it weights a lot.
Diffstat (limited to 'i18n/fr_FR/projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch')
-rw-r--r--i18n/fr_FR/projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/i18n/fr_FR/projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch b/i18n/fr_FR/projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch
deleted file mode 100644
index 3b4c5411..00000000
--- a/i18n/fr_FR/projects/depthcharge/patches/0004-mmc-Initialize-clock-variable-in-mmc_recalculate_clo.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 925042a09afb9529b112eff2e4d56bf979ff32ec Mon Sep 17 00:00:00 2001
-From: Paul Kocialkowski <contact@paulk.fr>
-Date: Mon, 19 Dec 2016 14:54:40 +0100
-Subject: [PATCH 4/4] mmc: Initialize clock variable in mmc_recalculate_clock
-
-Initializing the variable before it is used (and set to a proper value)
-avoids triggering a maybe uninitialized compiler warning.
-
-Change-Id: I0f78e534919e892e23fbe6d38bba6e68c408b0c4
-Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
----
- src/drivers/storage/mmc.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/drivers/storage/mmc.c b/src/drivers/storage/mmc.c
-index b877548..54306a1 100644
---- a/src/drivers/storage/mmc.c
-+++ b/src/drivers/storage/mmc.c
-@@ -509,7 +509,7 @@ static void mmc_set_clock(MmcCtrlr *ctrlr, uint32_t clock)
-
- static void mmc_recalculate_clock(MmcMedia *media)
- {
-- uint32_t clock;
-+ uint32_t clock = 0;
-
- if (IS_SD(media)) {
- if (media->caps & MMC_MODE_HS)
---
-2.10.2
-