diff options
author | Sreerenj Balachandran <sreerenj.balachandran@intel.com> | 2015-10-12 11:37:56 +0300 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2015-10-13 14:38:38 +0800 |
commit | 0ac92800724ddcaf85826963ce50d84894143814 (patch) | |
tree | 9e0c45bd56b2638cf826720e0d48c7e4138cf353 | |
parent | 7dd506eb696d095dd7d0dfd3f1c058507cfbeaaf (diff) |
vpp/gen8: Fix the incorrect loading of kernel module.
The correct i965 kernel interface index for pp_pl3_load_save_pl3_gen8 is PP_PL3_LOAD_SAVE_PL3.
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
-rw-r--r-- | src/gen8_post_processing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gen8_post_processing.c b/src/gen8_post_processing.c index deb0787..714997f 100644 --- a/src/gen8_post_processing.c +++ b/src/gen8_post_processing.c @@ -175,7 +175,7 @@ static struct pp_module pp_modules_gen8[] = { { { "PL3_PL3", - PP_PL3_LOAD_SAVE_N12, + PP_PL3_LOAD_SAVE_PL3, pp_pl3_load_save_pl3_gen8, sizeof(pp_pl3_load_save_pl3_gen8), NULL, |