diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-02-14 20:09:00 +0100 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2021-02-16 17:24:15 +0000 |
commit | fe33f963667c7caa3ff47fdd10a8d055e4fe319a (patch) | |
tree | 1788bc54537eee9ec8170c55b04b4ad8f92569c1 /src | |
parent | 7e821a1526725223f36723a7096efa4813661341 (diff) |
soc/qualcomm: Remove unused <string.h>
Found using:
diff <(git grep -l '#include <string.h>' -- src/) <(git grep -l 'STRINGIFY\|memcpy\|memmove\|memset\|memcmp\|memchr\|strdup\|strconcat\|strnlen\|strlen\|strchr\|strncpy\|strcpy\|strcmp\|strncmp\|strspn\|strcspn\|strstr\|strtok_r\|strtok\|atol\|strrchr\|skip_atoi\|snprintf' -- src/)|grep '<'
Change-Id: I78f8e115a54f869b990950a1c7d686e0f25033c8
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50688
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/qualcomm/sc7180/carve_out.c | 1 | ||||
-rw-r--r-- | src/soc/qualcomm/sc7180/display/dsi_phy_pll.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/soc/qualcomm/sc7180/carve_out.c b/src/soc/qualcomm/sc7180/carve_out.c index 960b923bcc..604abbdeeb 100644 --- a/src/soc/qualcomm/sc7180/carve_out.c +++ b/src/soc/qualcomm/sc7180/carve_out.c @@ -4,7 +4,6 @@ #include <soc/mmu_common.h> #include <soc/symbols.h> #include <device/mmio.h> -#include <string.h> #define MODEM_ID_LTE 0x004c5445 #define MODEM_ID_WIFI 0x57494649 diff --git a/src/soc/qualcomm/sc7180/display/dsi_phy_pll.c b/src/soc/qualcomm/sc7180/display/dsi_phy_pll.c index 88754ee59c..0e7f387c84 100644 --- a/src/soc/qualcomm/sc7180/display/dsi_phy_pll.c +++ b/src/soc/qualcomm/sc7180/display/dsi_phy_pll.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include <device/mmio.h> -#include <string.h> #include <stdint.h> #include <delay.h> #include <edid.h> |