summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:44:17 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 15:41:40 +0300
commitd84855fe82d1725497773b8048817ae5788e1442 (patch)
treef370d22a80f378f452b567182635919613c9a6a5 /include
parent1744ceb66f17428b773b1fbec78cc88ec76428d6 (diff)
downloadu-boot-d84855fe82d1725497773b8048817ae5788e1442.tar.xz
Correct SPL use of TEE
This converts 1 usage of this option to the non-SPL form, since there is no SPL_TEE defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/tee.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tee.h b/include/tee.h
index 13f6096b9a..ab0c583261 100644
--- a/include/tee.h
+++ b/include/tee.h
@@ -328,7 +328,7 @@ bool tee_shm_is_registered(struct tee_shm *shm, struct udevice *dev);
* Returns a probed TEE device of the first TEE device matched by the
* match() callback or NULL.
*/
-#if CONFIG_IS_ENABLED(TEE)
+#if IS_ENABLED(CONFIG_TEE)
struct udevice *tee_find_device(struct udevice *start,
int (*match)(struct tee_version_data *vers,
const void *data),