1 #ifndef __NVKM_FIRMWARE_H__
2 #define __NVKM_FIRMWARE_H__
3 
4 #include <core/device.h>
5 
6 int nvkm_firmware_get(struct nvkm_device *device, const char *fwname,
7 		      const struct firmware **fw);
8 
9 void nvkm_firmware_put(const struct firmware *fw);
10 
11 #endif
12