qcacmn: cmn changes for sun compilation

Current code has compilation errors
when compiling for sun. Specifically
of_get_named_gpio_flags() was removed
from the newer kernel. So this change
removes function call on newer kernel
version.

Change-Id: I55d060f1dcae65dea1fc0043b98b03f2b10246df
CRs-Fixed: 3632175
This commit is contained in:
Mohammed Ahmed
2023-10-03 14:09:20 -07:00
کامیت شده توسط Ravindra Konda
والد 7dbcea96f9
کامیت 162ac04ff7
3فایلهای تغییر یافته به همراه26 افزوده شده و 0 حذف شده

مشاهده پرونده

@@ -430,6 +430,7 @@ __qal_vbus_rcu_read_unlock(void)
return QDF_STATUS_SUCCESS;
}
#if (LINUX_VERSION_CODE < KERNEL_VERSION(6, 2, 0))
/**
* __qal_vbus_of_get_named_gpio_flags() - Get a GPIO descriptor and flags
* for GPIO API
@@ -448,4 +449,15 @@ __qal_vbus_of_get_named_gpio_flags(struct qdf_device_node *np,
return of_get_named_gpio_flags((struct device_node *)np,
list_name, index, flags);
}
#else
static inline int
__qal_vbus_of_get_named_gpio_flags(struct qdf_device_node *np,
const char *list_name,
int index, __qdf_of_gpio_flags *flags)
{
QDF_ASSERT(0);
return QDF_STATUS_E_NOSUPPORT;
}
#endif
#endif /* __I_QAL_VBUS_DEV_H */