Lines Matching refs:fwl
134 struct fw_upload *fwl; member
1105 firmware_upload_unregister(tst->fwl); in upload_release()
1184 static enum fw_upload_err test_fw_upload_prepare(struct fw_upload *fwl, in test_fw_upload_prepare() argument
1187 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_prepare()
1224 static enum fw_upload_err test_fw_upload_write(struct fw_upload *fwl, in test_fw_upload_write() argument
1228 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_write()
1250 static enum fw_upload_err test_fw_upload_complete(struct fw_upload *fwl) in test_fw_upload_complete() argument
1252 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_complete()
1268 static void test_fw_upload_cancel(struct fw_upload *fwl) in test_fw_upload_cancel() argument
1270 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_cancel()
1275 static void test_fw_cleanup(struct fw_upload *fwl) in test_fw_cleanup() argument
1277 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_cleanup()
1296 struct fw_upload *fwl; in upload_register_store() local
1324 fwl = firmware_upload_register(THIS_MODULE, dev, tst->name, in upload_register_store()
1326 if (IS_ERR(fwl)) { in upload_register_store()
1327 ret = PTR_ERR(fwl); in upload_register_store()
1331 tst->fwl = fwl; in upload_register_store()