Commit 572dea85 authored by Manish Pandey's avatar Manish Pandey Committed by TrustedFirmware Code Review
Browse files

Merge "plat: qti: Fix build failure" into integration

parents a3b50044 752ff3bf
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#ifndef QTI_RNG_H #ifndef QTI_RNG_H
#define QTI_RNG_H #define QTI_RNG_H
#include <stdinit.h> #include <stdint.h>
int qti_rng_get_data(uint8_t *out, uint32_t out_len); int qti_rng_get_data(uint8_t *out, uint32_t out_len);
......
...@@ -4,10 +4,10 @@ ...@@ -4,10 +4,10 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <stddef.h> #include <stddef.h>
#include <stdint.h>
#include <lib/mmio.h> #include <lib/mmio.h>
#include <qti_rng.h>
#include <qti_rng_io.h> #include <qti_rng_io.h>
int qti_rng_get_data(uint8_t *out, uint32_t out_len) int qti_rng_get_data(uint8_t *out, uint32_t out_len)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment