mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02:00
Factor out common instance destruction code into a common function. Suggested-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Sergey Senozhatsky <senozhatsky@chromium.org> Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Stanimir Varbanov <stanimir.k.varbanov@gmail.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
14 lines
280 B
C
14 lines
280 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2012-2016, The Linux Foundation. All rights reserved.
|
|
* Copyright (C) 2017 Linaro Ltd.
|
|
*/
|
|
#ifndef __VENUS_VENC_H__
|
|
#define __VENUS_VENC_H__
|
|
|
|
struct venus_inst;
|
|
|
|
int venc_ctrl_init(struct venus_inst *inst);
|
|
|
|
#endif
|