Commit ad36d71b authored by Aurabindo Pillai's avatar Aurabindo Pillai Committed by Alex Deucher
Browse files

amdgpu_kms: Remove unnecessary condition check



Execution will only reach here if the asserted condition is true.
Hence there is no need for the additional check.

Signed-off-by: default avatarAurabindo Pillai <mail@aurabindo.in>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ef91e8b5
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -183,12 +183,10 @@ int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
	/* Call ACPI methods: require modeset init
	 * but failure is not fatal
	 */
	if (!r) {

	acpi_status = amdgpu_acpi_init(adev);
	if (acpi_status)
			dev_dbg(&dev->pdev->dev,
				"Error during ACPI methods call\n");
	}
		dev_dbg(&dev->pdev->dev, "Error during ACPI methods call\n");

	if (adev->runpm) {
		dev_pm_set_driver_flags(dev->dev, DPM_FLAG_NEVER_SKIP);