video: driver: remove support for diwali

Diwali chipset is not supported on kernel 5.15, hence removing it.

Change-Id: Ibeb69b5f6a4a5377a887c59d98f5571c971792bc
Signed-off-by: Deepa Guthyappa Madivalara <quic_dmadival@quicinc.com>
Цей коміт міститься в:
Deepa Guthyappa Madivalara
2022-03-17 10:40:52 -07:00
джерело 964a9fed8c
коміт 8f45e56c57
6 змінених файлів з 0 додано та 5273 видалено

Переглянути файл

@@ -17,9 +17,6 @@
#if defined(CONFIG_MSM_VIDC_KALAMA)
#include "msm_vidc_kalama.h"
#endif
#if defined(CONFIG_MSM_VIDC_DIWALI)
#include "msm_vidc_diwali.h"
#endif
#if defined(CONFIG_MSM_VIDC_IRIS2)
#include "msm_vidc_iris2.h"
#endif
@@ -198,16 +195,6 @@ static int msm_vidc_deinit_platform_variant(struct msm_vidc_core *core, struct d
}
#endif
#if defined(CONFIG_MSM_VIDC_DIWALI)
if (of_device_is_compatible(dev->of_node, "qcom,msm-vidc-diwali")) {
rc = msm_vidc_deinit_platform_diwali(core, dev);
if (rc)
d_vpr_e("%s: failed msm-vidc-diwali with %d\n",
__func__, rc);
return rc;
}
#endif
return rc;
}
@@ -239,16 +226,6 @@ static int msm_vidc_init_platform_variant(struct msm_vidc_core *core, struct dev
}
#endif
#if defined(CONFIG_MSM_VIDC_DIWALI)
if (of_device_is_compatible(dev->of_node, "qcom,msm-vidc-diwali")) {
rc = msm_vidc_init_platform_diwali(core, dev);
if (rc)
d_vpr_e("%s: failed msm-vidc-diwali with %d\n",
__func__, rc);
return rc;
}
#endif
return rc;
}