diff --git a/scripts/conftest/Makefile b/scripts/conftest/Makefile index 9da2d9e8..ed1a1291 100644 --- a/scripts/conftest/Makefile +++ b/scripts/conftest/Makefile @@ -114,6 +114,7 @@ NV_CONFTEST_FUNCTION_COMPILE_TESTS += devfreq_dev_profile_has_is_cooling_device NV_CONFTEST_FUNCTION_COMPILE_TESTS += devfreq_has_freq_table NV_CONFTEST_FUNCTION_COMPILE_TESTS += device_add_disk_has_int_return_type NV_CONFTEST_FUNCTION_COMPILE_TESTS += devm_pm_domain_attach_list +NV_CONFTEST_FUNCTION_COMPILE_TESTS += devm_of_icc_get NV_CONFTEST_FUNCTION_COMPILE_TESTS += devm_spi_alloc_host NV_CONFTEST_FUNCTION_COMPILE_TESTS += devm_tegra_core_dev_init_opp_table_common NV_CONFTEST_FUNCTION_COMPILE_TESTS += devm_thermal_of_zone_register @@ -144,6 +145,9 @@ NV_CONFTEST_FUNCTION_COMPILE_TESTS += fop_unsigned_offset NV_CONFTEST_FUNCTION_COMPILE_TESTS += genpd_xlate_t_has_const_of_phandle_args NV_CONFTEST_FUNCTION_COMPILE_TESTS += get_file_rcu_has_double_ptr_file_arg NV_CONFTEST_FUNCTION_COMPILE_TESTS += get_user_pages +NV_CONFTEST_FUNCTION_COMPILE_TESTS += icc_get +NV_CONFTEST_FUNCTION_COMPILE_TESTS += icc_put +NV_CONFTEST_FUNCTION_COMPILE_TESTS += icc_set_bw NV_CONFTEST_FUNCTION_COMPILE_TESTS += i2c_new_client_device NV_CONFTEST_FUNCTION_COMPILE_TESTS += i2c_driver_struct_probe_without_i2c_device_id_arg NV_CONFTEST_FUNCTION_COMPILE_TESTS += i2c_driver_struct_has_probe_new diff --git a/scripts/conftest/conftest.sh b/scripts/conftest/conftest.sh index 7b97c2b1..d0ae5036 100755 --- a/scripts/conftest/conftest.sh +++ b/scripts/conftest/conftest.sh @@ -5326,9 +5326,7 @@ compile_test() { # interconnect API") # CODE=" - #if defined(NV_LINUX_INTERCONNECT_H_PRESENT) #include - #endif void conftest_icc_get(void) { icc_get(); @@ -5346,9 +5344,7 @@ compile_test() { # exported API for user interconnect API") # CODE=" - #if defined(NV_LINUX_INTERCONNECT_H_PRESENT) #include - #endif void conftest_devm_of_icc_get(void) { devm_of_icc_get(); @@ -5366,9 +5362,7 @@ compile_test() { # interconnect API") # CODE=" - #if defined(NV_LINUX_INTERCONNECT_H_PRESENT) #include - #endif void conftest_icc_set_bw(void) { icc_set_bw(); @@ -5386,9 +5380,7 @@ compile_test() { # interconnect API") # CODE=" - #if defined(NV_LINUX_INTERCONNECT_H_PRESENT) #include - #endif void conftest_icc_put(void) { icc_put();