forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/gpu/drm/rockchip/ebc-dev/epdlut/epd_lut.c
....@@ -16,7 +16,7 @@
1616 #include "../ebc_dev.h"
1717 #include "epd_lut.h"
1818
19
-static int (*lut_get)(struct epd_lut_data *, enum epd_lut_type, int, int);
19
+static int (*lut_get)(struct epd_lut_data *, enum epd_lut_type, int);
2020
2121 int epd_lut_from_mem_init(void *waveform)
2222 {
....@@ -66,13 +66,7 @@
6666 return NULL;
6767 }
6868
69
-int epd_lut_get(struct epd_lut_data *output, enum epd_lut_type lut_type, int temperture, int pic)
69
+int epd_lut_get(struct epd_lut_data *output, enum epd_lut_type lut_type, int temperture)
7070 {
71
- return lut_get(output, lut_type, temperture, pic);
71
+ return lut_get(output, lut_type, temperture);
7272 }
73
-
74
-//you can change overlay lut mode here
75
-int epd_overlay_lut(void)
76
-{
77
- return WF_TYPE_GRAY2;
78
-}