2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
|
#ifndef __NVKM_FALCON_PRIV_H__
|
|
|
|
|
#define __NVKM_FALCON_PRIV_H__
|
|
|
|
|
#include <core/falcon.h>
|
2026-01-29 22:25:33 +08:00
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
|
nvkm_falcon_enable(struct nvkm_falcon *falcon)
|
|
|
|
|
{
|
|
|
|
|
if (falcon->func->enable)
|
|
|
|
|
return falcon->func->enable(falcon);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2026-01-21 18:59:54 +08:00
|
|
|
#endif
|