diff options
author | Hoegeun Kwon <hoegeun.kwon@samsung.com> | 2017-04-18 10:33:06 +0900 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2019-04-25 17:58:34 +0900 |
commit | 31db2be36700b82b2872c3dab4b27482c5388f9b (patch) | |
tree | 3586faecd3ff9e2f21b5fa30aa7086e63ca4382b | |
parent | d01e98d0d05f3eb303397004ce4002d771c9006a (diff) | |
download | libdrm-31db2be36700b82b2872c3dab4b27482c5388f9b.tar.gz libdrm-31db2be36700b82b2872c3dab4b27482c5388f9b.tar.bz2 libdrm-31db2be36700b82b2872c3dab4b27482c5388f9b.zip |
ipptest: Fix switch build warning
fimc.c:780:2: warning: enumeration value 'IPP_CMD_M2M_NONE' not handled in switch [-Wswitch]
switch (display) {
Change-Id: I57707ce3131685313eb7422a0cfa7c9462dab9ca
Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
-rw-r--r-- | tests/ipptest/fimc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ipptest/fimc.c b/tests/ipptest/fimc.c index cada617e..6eeb8de3 100644 --- a/tests/ipptest/fimc.c +++ b/tests/ipptest/fimc.c @@ -912,6 +912,8 @@ void fimc_m2m_set_mode(struct device *dev, struct connector *c, int count, gettimeofday(&begin, NULL); } break; + case IPP_CMD_M2M_NONE: + break; } err_ipp_quque_close: |