Lines Matching refs:fwl
135 struct fw_upload *fwl; member
1106 firmware_upload_unregister(tst->fwl); in upload_release()
1185 static enum fw_upload_err test_fw_upload_prepare(struct fw_upload *fwl, in test_fw_upload_prepare() argument
1188 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_prepare()
1225 static enum fw_upload_err test_fw_upload_write(struct fw_upload *fwl, in test_fw_upload_write() argument
1229 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_write()
1251 static enum fw_upload_err test_fw_upload_complete(struct fw_upload *fwl) in test_fw_upload_complete() argument
1253 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_complete()
1269 static void test_fw_upload_cancel(struct fw_upload *fwl) in test_fw_upload_cancel() argument
1271 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_cancel()
1276 static void test_fw_cleanup(struct fw_upload *fwl) in test_fw_cleanup() argument
1278 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_cleanup()
1297 struct fw_upload *fwl; in upload_register_store() local
1325 fwl = firmware_upload_register(THIS_MODULE, dev, tst->name, in upload_register_store()
1327 if (IS_ERR(fwl)) { in upload_register_store()
1328 ret = PTR_ERR(fwl); in upload_register_store()
1332 tst->fwl = fwl; in upload_register_store()