diff options
author | Hoegeun Kwon <hoegeun.kwon@samsung.com> | 2017-04-18 10:33:06 +0900 |
---|---|---|
committer | Hoegeun Kwon <hoegeun.kwon@samsung.com> | 2017-04-18 10:33:06 +0900 |
commit | 9d9744fea4cb490b3af39d45c9206c38da507513 (patch) | |
tree | cdd564373fec18206a23d90a838cbe121d53749e /tests/ipptest | |
parent | b78f7b277491377123842fdfe1cae3c1260911de (diff) | |
download | libdrm-9d9744fea4cb490b3af39d45c9206c38da507513.tar.gz libdrm-9d9744fea4cb490b3af39d45c9206c38da507513.tar.bz2 libdrm-9d9744fea4cb490b3af39d45c9206c38da507513.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>
Diffstat (limited to 'tests/ipptest')
-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 2d15cac5..3f4d07d2 100644 --- a/tests/ipptest/fimc.c +++ b/tests/ipptest/fimc.c @@ -916,6 +916,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: |