Lines Matching refs:fwl
134 struct fw_upload *fwl; member
1105 firmware_upload_unregister(tst->fwl); in upload_release()
1183 static enum fw_upload_err test_fw_upload_prepare(struct fw_upload *fwl, in test_fw_upload_prepare() argument
1186 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_prepare()
1223 static enum fw_upload_err test_fw_upload_write(struct fw_upload *fwl, in test_fw_upload_write() argument
1227 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_write()
1249 static enum fw_upload_err test_fw_upload_complete(struct fw_upload *fwl) in test_fw_upload_complete() argument
1251 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_complete()
1267 static void test_fw_upload_cancel(struct fw_upload *fwl) in test_fw_upload_cancel() argument
1269 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_cancel()
1274 static void test_fw_cleanup(struct fw_upload *fwl) in test_fw_cleanup() argument
1276 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_cleanup()
1295 struct fw_upload *fwl; in upload_register_store() local
1323 fwl = firmware_upload_register(THIS_MODULE, dev, tst->name, in upload_register_store()
1325 if (IS_ERR(fwl)) { in upload_register_store()
1326 ret = PTR_ERR(fwl); in upload_register_store()
1330 tst->fwl = fwl; in upload_register_store()