24 lines
443 B
C
24 lines
443 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (c) 2020 MediaTek Inc.
|
|
*/
|
|
|
|
#include "vpu_cfg.h"
|
|
#include "vpu_cmn.h"
|
|
#include "mtk_devinfo.h"
|
|
#include "vpu_debug.h"
|
|
#include <memory/mediatek/emi.h>
|
|
|
|
/**
|
|
* vpu_is_disabled - enable/disable vpu from efuse
|
|
* @vd: struct vpu_device to get the id
|
|
*
|
|
* return 1: this vd->id is disabled
|
|
* return 0: this vd->id is enabled
|
|
*/
|
|
bool vpu_is_disabled(struct vpu_device *vd)
|
|
{
|
|
return false;
|
|
}
|
|
|