static void
nv98_crypt_destroy(struct drm_device *dev, int engine)
{
	struct nv98_crypt_engine *pcrypt = nv_engine(dev, engine);

	NVOBJ_ENGINE_DEL(dev, CRYPT);

	kfree(pcrypt);
}
Exemplo n.º 2
0
static void
nv84_bsp_destroy(struct drm_device *dev, int engine)
{
	struct nv84_bsp_engine *pbsp = nv_engine(dev, engine);

	NVOBJ_ENGINE_DEL(dev, BSP);

	kfree(pbsp);
}
Exemplo n.º 3
0
static void
nv98_ppp_destroy(struct drm_device *dev, int engine)
{
	struct nv98_ppp_engine *pppp = nv_engine(dev, engine);

	NVOBJ_ENGINE_DEL(dev, PPP);

	kfree(pppp);
}