brintos

brintos / linux-shallow public Read only

0
0
Text · 390 B · e83d0c3 Raw
14 lines · c
1/* SPDX-License-Identifier: MIT */2#ifndef __NVKM_FUSE_PRIV_H__3#define __NVKM_FUSE_PRIV_H__4#define nvkm_fuse(p) container_of((p), struct nvkm_fuse, subdev)5#include <subdev/fuse.h>6 7struct nvkm_fuse_func {8	u32 (*read)(struct nvkm_fuse *, u32 addr);9};10 11int nvkm_fuse_new_(const struct nvkm_fuse_func *, struct nvkm_device *, enum nvkm_subdev_type, int,12		   struct nvkm_fuse **);13#endif14