aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/platform/x86/intel_scu_ipc.c2
-rw-r--r--drivers/watchdog/intel_scu_watchdog.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/intel_scu_ipc.c b/drivers/platform/x86/intel_scu_ipc.c
index 5f8f6c91596c..d654f831410d 100644
--- a/drivers/platform/x86/intel_scu_ipc.c
+++ b/drivers/platform/x86/intel_scu_ipc.c
@@ -579,7 +579,7 @@ static struct pci_driver ipc_driver = {
579 579
580static int __init intel_scu_ipc_init(void) 580static int __init intel_scu_ipc_init(void)
581{ 581{
582 platform = mrst_identify_cpu(); 582 platform = intel_mid_identify_cpu();
583 if (platform == 0) 583 if (platform == 0)
584 return -ENODEV; 584 return -ENODEV;
585 return pci_register_driver(&ipc_driver); 585 return pci_register_driver(&ipc_driver);
diff --git a/drivers/watchdog/intel_scu_watchdog.c b/drivers/watchdog/intel_scu_watchdog.c
index 07964d82123a..8ced25613956 100644
--- a/drivers/watchdog/intel_scu_watchdog.c
+++ b/drivers/watchdog/intel_scu_watchdog.c
@@ -445,7 +445,7 @@ static int __init intel_scu_watchdog_init(void)
445 * 445 *
446 * If it isn't an intel MID device then it doesn't have this watchdog 446 * If it isn't an intel MID device then it doesn't have this watchdog
447 */ 447 */
448 if (!mrst_identify_cpu()) 448 if (!intel_mid_identify_cpu())
449 return -ENODEV; 449 return -ENODEV;
450 450
451 /* Check boot parameters to verify that their initial values */ 451 /* Check boot parameters to verify that their initial values */