s5p_mfc_opr.c revision 43a1ea1f90382a6a8fcf5ed94835b8518ebdefc8
1/*
2 * drivers/media/platform/s5p-mfc/s5p_mfc_opr.c
3 *
4 * Samsung MFC (Multi Function Codec - FIMV) driver
5 * This file contains hw related functions.
6 *
7 * Kamil Debski, Copyright (c) 2012 Samsung Electronics Co., Ltd.
8 * http://www.samsung.com/
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include "s5p_mfc_opr.h"
16#include "s5p_mfc_opr_v5.h"
17
18static struct s5p_mfc_hw_ops *s5p_mfc_ops;
19
20void s5p_mfc_init_hw_ops(struct s5p_mfc_dev *dev)
21{
22	s5p_mfc_ops = s5p_mfc_init_hw_ops_v5();
23	dev->warn_start = S5P_FIMV_ERR_WARNINGS_START;
24	dev->mfc_ops = s5p_mfc_ops;
25}
26