diff options
author | Venkat Thogaru <quic_thogaru@quicinc.com> | 2022-09-26 17:46:45 +0530 |
---|---|---|
committer | Julius Werner <jwerner@chromium.org> | 2022-09-27 23:13:27 +0000 |
commit | 209efccba6613cefab7f218f68e51b92fe4fc534 (patch) | |
tree | eed359caf8cd996b875b14c7ff159fcb01254fcb /src/soc | |
parent | 9bf8f6bd909635c35edd875a27a51b2e6f2d4b68 (diff) |
sc7180: Update correct path of reset.h header file
Updated reset.h header file path and sorted alphabetically
BUG=b:236990316
TEST=Validated on qualcomm sc7180 development board.
Signed-off-by: Venkat Thogaru <quic_thogaru@quicinc.com>
Change-Id: Ibf92df160a6f8ba588310508812a5601e68a887e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67835
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/qualcomm/common/qclib.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/soc/qualcomm/common/qclib.c b/src/soc/qualcomm/common/qclib.c index 0c7ace247d..4d005e53af 100644 --- a/src/soc/qualcomm/common/qclib.c +++ b/src/soc/qualcomm/common/qclib.c @@ -1,22 +1,22 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <console/cbmem_console.h> -#include <cbmem.h> -#include <string.h> -#include <fmap.h> #include <assert.h> #include <arch/mmu.h> #include <cbfs.h> +#include <cbmem.h> +#include <commonlib/bsd/mem_chip_info.h> +#include <console/cbmem_console.h> #include <console/console.h> +#include <fmap.h> #include <mrc_cache.h> +#include <reset.h> +#include <security/vboot/misc.h> #include <soc/mmu.h> #include <soc/mmu_common.h> #include <soc/qclib_common.h> #include <soc/symbols_common.h> -#include <security/vboot/misc.h> +#include <string.h> #include <vb2_api.h> -#include <commonlib/bsd/mem_chip_info.h> -#include <include/reset.h> #define QCLIB_VERSION 0 |