summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAnkit Patel <anpatel@nvidia.com>2020-07-14 13:51:56 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2021-08-02 16:24:39 -0400
commit3e54f17ed2cdf0495c727077436dde94d0314c2f (patch)
treef7ee33392701394f4318106d4197e32fce0e0079 /include
parent0c3c13487ca0fbafcfb047a478d0b25837fc6c77 (diff)
video: tegra: host: LS fw gets priority in get fw
Whenever NVDEC LS firmware pack for the soc, It will give priority to LS FW rather than NS FW. If in case of absence of LS FW It will load NS FW. Bug 200415909 Bug 200704321 Signed-off-by: Ankit Patel <anpatel@nvidia.com> Change-Id: I15f53f33d4735c25b972e1e8a394d01047f86bde Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2375549 Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2511966 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/nvhost.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/nvhost.h b/include/linux/nvhost.h
index 56448483c..aefb46ceb 100644
--- a/include/linux/nvhost.h
+++ b/include/linux/nvhost.h
@@ -551,7 +551,7 @@ static inline void nvhost_syncpt_set_min_eq_max_ext(
551 551
552static inline const struct firmware * 552static inline const struct firmware *
553nvhost_client_request_firmware(struct platform_device *dev, 553nvhost_client_request_firmware(struct platform_device *dev,
554 const char *fw_name) 554 const char *fw_name, bool warn)
555{ 555{
556 return NULL; 556 return NULL;
557} 557}
@@ -824,11 +824,11 @@ static inline void nvhost_debug_dump_device(struct platform_device *pdev)
824#ifdef CONFIG_TEGRA_GRHOST 824#ifdef CONFIG_TEGRA_GRHOST
825const struct firmware * 825const struct firmware *
826nvhost_client_request_firmware(struct platform_device *dev, 826nvhost_client_request_firmware(struct platform_device *dev,
827 const char *fw_name); 827 const char *fw_name, bool warn);
828#else 828#else
829static inline const struct firmware * 829static inline const struct firmware *
830nvhost_client_request_firmware(struct platform_device *dev, 830nvhost_client_request_firmware(struct platform_device *dev,
831 const char *fw_name) 831 const char *fw_name, bool warn)
832{ 832{
833 return NULL; 833 return NULL;
834} 834}