diff options
| author | Maarten Lankhorst <maarten.lankhorst@linux.intel.com> | 2021-07-27 12:48:17 +0200 | 
|---|---|---|
| committer | Maarten Lankhorst <maarten.lankhorst@linux.intel.com> | 2021-07-27 12:48:17 +0200 | 
| commit | ca31fef11dc83e672415d5925a134749761329bd (patch) | |
| tree | 8eb6a489e2d6dd117300f40ed8fc945a06bb6eee /lib/test_firmware.c | |
| parent | ba6cd766e0bf933611dc66fcb86f72ac80a446bc (diff) | |
| parent | 15d27b15de965043d6f8e23bc7f34386fcd1a772 (diff) | |
Backmerge remote-tracking branch 'drm/drm-next' into drm-misc-next
Required bump from v5.13-rc3 to v5.14-rc3, and to pick up sysfb compilation fixes.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Diffstat (limited to 'lib/test_firmware.c')
| -rw-r--r-- | lib/test_firmware.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/test_firmware.c b/lib/test_firmware.c index b6fe89add9fe..1bccd6cd5f48 100644 --- a/lib/test_firmware.c +++ b/lib/test_firmware.c @@ -260,8 +260,8 @@ static ssize_t config_show(struct device *dev,  	len += scnprintf(buf + len, PAGE_SIZE - len,  			"send_uevent:\t\t%s\n",  			test_fw_config->send_uevent ? -			"FW_ACTION_HOTPLUG" : -			"FW_ACTION_NOHOTPLUG"); +			"FW_ACTION_UEVENT" : +			"FW_ACTION_NOUEVENT");  	len += scnprintf(buf + len, PAGE_SIZE - len,  			"into_buf:\t\t%s\n",  			test_fw_config->into_buf ? "true" : "false"); @@ -729,7 +729,7 @@ static ssize_t trigger_custom_fallback_store(struct device *dev,  	mutex_lock(&test_fw_mutex);  	release_firmware(test_firmware);  	test_firmware = NULL; -	rc = request_firmware_nowait(THIS_MODULE, FW_ACTION_NOHOTPLUG, name, +	rc = request_firmware_nowait(THIS_MODULE, FW_ACTION_NOUEVENT, name,  				     dev, GFP_KERNEL, NULL,  				     trigger_async_request_cb);  	if (rc) { @@ -938,8 +938,8 @@ ssize_t trigger_batched_requests_async_store(struct device *dev,  	pr_info("batched loading '%s' custom fallback mechanism %u times\n",  		test_fw_config->name, test_fw_config->num_requests); -	send_uevent = test_fw_config->send_uevent ? FW_ACTION_HOTPLUG : -		FW_ACTION_NOHOTPLUG; +	send_uevent = test_fw_config->send_uevent ? FW_ACTION_UEVENT : +		FW_ACTION_NOUEVENT;  	for (i = 0; i < test_fw_config->num_requests; i++) {  		req = &test_fw_config->reqs[i];  | 
