Lines Matching refs:fwl
132 struct fw_upload *fwl; member
1059 firmware_upload_unregister(tst->fwl); in upload_release()
1137 static enum fw_upload_err test_fw_upload_prepare(struct fw_upload *fwl, in test_fw_upload_prepare() argument
1140 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_prepare()
1177 static enum fw_upload_err test_fw_upload_write(struct fw_upload *fwl, in test_fw_upload_write() argument
1181 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_write()
1203 static enum fw_upload_err test_fw_upload_complete(struct fw_upload *fwl) in test_fw_upload_complete() argument
1205 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_complete()
1221 static void test_fw_upload_cancel(struct fw_upload *fwl) in test_fw_upload_cancel() argument
1223 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_upload_cancel()
1228 static void test_fw_cleanup(struct fw_upload *fwl) in test_fw_cleanup() argument
1230 struct test_firmware_upload *tst = fwl->dd_handle; in test_fw_cleanup()
1249 struct fw_upload *fwl; in upload_register_store() local
1277 fwl = firmware_upload_register(THIS_MODULE, dev, tst->name, in upload_register_store()
1279 if (IS_ERR(fwl)) { in upload_register_store()
1280 ret = PTR_ERR(fwl); in upload_register_store()
1284 tst->fwl = fwl; in upload_register_store()