mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
Linux v5.x kernels are no longer supported and so remove all the legacy UFS related headers for these kernels. Bug 3978622 JIRA LINQPJ14-47 Change-Id: I6e514305d30f93d74bd75fc335db69ced79b3866 Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3349975 GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: Brad Griffis <bgriffis@nvidia.com>
28 lines
661 B
C
28 lines
661 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* SPDX-FileCopyrightText: Copyright (c) 2015-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. */
|
|
|
|
#ifndef _UFS_PROVISION_H
|
|
#define _UFS_PROVISION_H
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
|
|
#include <ufs/ufshcd.h>
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
#include <linux/debugfs.h>
|
|
void debugfs_provision_init(struct ufs_hba *hba, struct dentry *device_root);
|
|
void debugfs_provision_exit(struct ufs_hba *hba);
|
|
#else
|
|
static inline void debugfs_provision_init(struct ufs_hba *hba, struct dentry *device_root)
|
|
{
|
|
return;
|
|
}
|
|
static inline void debugfs_provision_exit(struct ufs_hba *hba)
|
|
{
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
#endif
|