remove SPI1 runtime PM workaround
authorBin Yang <bin.yang@intel.com>
Thu, 22 Mar 2012 07:49:41 +0000 (15:49 +0800)
committerbuildbot <buildbot@intel.com>
Thu, 22 Mar 2012 13:06:00 +0000 (06:06 -0700)
BZ: 25894

Runtime PM issues of SPI1 had been fixed already. Remove
this workaround.

Change-Id: Ib0dc7b47f39dddc98b9806e015df0514e31ea5a4
Signed-off-by: Bin Yang <bin.yang@intel.com>
Reviewed-on: http://android.intel.com:8080/39367
Reviewed-by: Du, Alek <alek.du@intel.com>
Tested-by: Wang, Zhifeng <zhifeng.wang@intel.com>
Reviewed-by: Mansoor, Illyas <illyas.mansoor@intel.com>
Reviewed-by: buildbot <buildbot@intel.com>
Tested-by: buildbot <buildbot@intel.com>
arch/x86/platform/intel-mid/mfld-pmu.c

index bab0ca8..3c29aac 100644 (file)
@@ -1732,12 +1732,12 @@ EXPORT_SYMBOL(pmu_set_lss01_to_d0i0_atomic);
 */
 static inline bool device_causing_hang(struct pci_dev *pdev)
 {
-       /* SPI  - causing platform Hang on enabling RTPM
+       /*
         * lss 41  -  causing Hang in platform when Bluetooth
         * is turned ON/OFF (UART0/1/2 are under lss41).
        */
-       return ((pdev) && (pdev->device) && ((pdev->device == SPI1_DEVICE_ID) ||
-                       (pdev->device == UART0_DEVICE_ID) ||
+       return ((pdev) && (pdev->device) &&
+                       ((pdev->device == UART0_DEVICE_ID) ||
                        (pdev->device == UART1_DEVICE_ID) ||
                        (pdev->device == UART2_DEVICE_ID)));
 }