static int __maybe_unused smtcfb_pci_suspend(struct device *device)
 {
-       struct pci_dev *pdev = to_pci_dev(device);
-       struct smtcfb_info *sfb;
+       struct smtcfb_info *sfb = dev_get_drvdata(device);
 
-       sfb = pci_get_drvdata(pdev);
 
        /* set the hw in sleep mode use external clock and self memory refresh
         * so that we can turn off internal PLLs later on
 
 static int __maybe_unused smtcfb_pci_resume(struct device *device)
 {
-       struct pci_dev *pdev = to_pci_dev(device);
-       struct smtcfb_info *sfb;
+       struct smtcfb_info *sfb = dev_get_drvdata(device);
 
-       sfb = pci_get_drvdata(pdev);
 
        /* reinit hardware */
        sm7xx_init_hw();