OSDN Git Service

drm/radeon: Clean up code in radeon_pci_shutdown()
authorKyleMahlkuch <kmahlkuc@linux.vnet.ibm.com>
Mon, 11 Nov 2019 20:27:58 +0000 (14:27 -0600)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 11 Nov 2019 22:38:13 +0000 (17:38 -0500)
This fixes the formatting on one comment and consolidates the
pci_get_drvdata() into the radeon_suspend_kms().

Signed-off-by: Kyle Mahlkuch <kmahlkuc@linux.vnet.ibm.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/radeon_drv.c

index 41f0832..fd74e26 100644 (file)
@@ -379,10 +379,6 @@ radeon_pci_remove(struct pci_dev *pdev)
 static void
 radeon_pci_shutdown(struct pci_dev *pdev)
 {
-#ifdef CONFIG_PPC64
-       struct drm_device *ddev = pci_get_drvdata(pdev);
-#endif
-
        /* if we are running in a VM, make sure the device
         * torn down properly on reboot/shutdown
         */
@@ -390,13 +386,14 @@ radeon_pci_shutdown(struct pci_dev *pdev)
                radeon_pci_remove(pdev);
 
 #ifdef CONFIG_PPC64
-       /* Some adapters need to be suspended before a
+       /*
+        * Some adapters need to be suspended before a
         * shutdown occurs in order to prevent an error
         * during kexec.
         * Make this power specific becauase it breaks
         * some non-power boards.
         */
-       radeon_suspend_kms(ddev, true, true, false);
+       radeon_suspend_kms(pci_get_drvdata(pdev), true, true, false);
 #endif
 }