diff --git a/drivers/gpu/host1x-emu/include/linux/symbol-emu.h b/drivers/gpu/host1x-emu/include/linux/symbol-emu.h index 0f1547ed..eb3d820b 100644 --- a/drivers/gpu/host1x-emu/include/linux/symbol-emu.h +++ b/drivers/gpu/host1x-emu/include/linux/symbol-emu.h @@ -13,8 +13,4 @@ #define HOST1X_EMU_EXPORT_SYMBOL(f) EXPORT_SYMBOL(f) #endif -#ifndef CONFIG_TEGRA_HOST1X_EMU_DBG_SYMBL -HOST1X_EMU_EXPORT_DECL(void, host1x_syncpt_fence_scan(struct host1x_syncpt *sp)); -#endif /*CONFIG_TEGRA_HOST1X_EMU_DBG_SYMBL*/ - #endif /*__HOST1X_EMU_SYMMBOL_H*/ diff --git a/drivers/gpu/host1x-emu/syncpt.h b/drivers/gpu/host1x-emu/syncpt.h index 2b7f5c95..0ad67cff 100644 --- a/drivers/gpu/host1x-emu/syncpt.h +++ b/drivers/gpu/host1x-emu/syncpt.h @@ -1,5 +1,5 @@ /* - * SPDX-FileCopyrightText: Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. * SPDX-License-Identifier: GPL-2.0-only */ #ifndef __HOST1X_EMU_SYNCPT_H @@ -50,6 +50,10 @@ struct host1x_syncpt { struct list_head list; }; +#ifndef CONFIG_TEGRA_HOST1X_EMU_DBG_SYMBL +HOST1X_EMU_EXPORT_DECL(void, host1x_syncpt_fence_scan(struct host1x_syncpt *sp)); +#endif /*CONFIG_TEGRA_HOST1X_EMU_DBG_SYMBL*/ + /** * Description: Initialize sync point array */