diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-03-21 09:55:49 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-04-06 16:02:49 +0000 |
commit | add76f91d5e6e18d5df52a9ad34906459f5f69e2 (patch) | |
tree | 4a561a339b0f7eeeaa20513a2706745dc649f5c7 /src/commonlib | |
parent | 2452c8414dca45d5e7e3006dc034d523c7ab06b2 (diff) |
src: Use #include <timer.h> when appropriate
Also, extra-lines added or removed and local includes moved down.
Change-Id: I5e739233f3742fd68d537f671642bb04886e3009
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32009
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/commonlib')
-rw-r--r-- | src/commonlib/storage/sd.c | 2 | ||||
-rw-r--r-- | src/commonlib/storage/sd_mmc.c | 4 | ||||
-rw-r--r-- | src/commonlib/storage/sdhci_adma.c | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/commonlib/storage/sd.c b/src/commonlib/storage/sd.c index 1389ffb409..2e1ae85f06 100644 --- a/src/commonlib/storage/sd.c +++ b/src/commonlib/storage/sd.c @@ -24,9 +24,9 @@ #include <commonlib/storage.h> #include <delay.h> #include <endian.h> + #include "sd_mmc.h" #include "storage.h" -#include <timer.h> int sd_send_if_cond(struct storage_media *media) { diff --git a/src/commonlib/storage/sd_mmc.c b/src/commonlib/storage/sd_mmc.c index bda8d7470c..fd59bd0b6f 100644 --- a/src/commonlib/storage/sd_mmc.c +++ b/src/commonlib/storage/sd_mmc.c @@ -24,11 +24,11 @@ #include <commonlib/storage.h> #include <delay.h> #include <endian.h> +#include <string.h> + #include "mmc.h" #include "sd_mmc.h" #include "storage.h" -#include <string.h> -#include <timer.h> uint64_t sd_mmc_extract_uint32_bits(const uint32_t *array, int start, int count) { diff --git a/src/commonlib/storage/sdhci_adma.c b/src/commonlib/storage/sdhci_adma.c index e95742b35b..1bae3fbff2 100644 --- a/src/commonlib/storage/sdhci_adma.c +++ b/src/commonlib/storage/sdhci_adma.c @@ -22,11 +22,11 @@ #include <commonlib/storage.h> #include <delay.h> #include <endian.h> +#include <string.h> + #include "sdhci.h" #include "sd_mmc.h" #include "storage.h" -#include <string.h> -#include <timer.h> static void sdhci_alloc_adma_descs(struct sdhci_ctrlr *sdhci_ctrlr, u32 need_descriptors) |