mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
of: add 'of_' prefix to machine_is_compatible()
machine is compatible is an OF-specific call. It should have the of_ prefix to protect the global namespace. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
@@ -224,7 +224,7 @@ long sys_pciconfig_iobase(long which, unsigned long in_bus,
|
||||
* G5 machines... So when something asks for bus 0 io base
|
||||
* (bus 0 is HT root), we return the AGP one instead.
|
||||
*/
|
||||
if (in_bus == 0 && machine_is_compatible("MacRISC4")) {
|
||||
if (in_bus == 0 && of_machine_is_compatible("MacRISC4")) {
|
||||
struct device_node *agp;
|
||||
|
||||
agp = of_find_compatible_node(NULL, NULL, "u3-agp");
|
||||
|
||||
@@ -80,8 +80,8 @@ static void xes_mpc85xx_configure_l2(void __iomem *l2_base)
|
||||
printk(KERN_INFO "xes_mpc85xx: Enabling L2 as cache\n");
|
||||
|
||||
ctl = MPC85xx_L2CTL_L2E | MPC85xx_L2CTL_L2I;
|
||||
if (machine_is_compatible("MPC8540") ||
|
||||
machine_is_compatible("MPC8560"))
|
||||
if (of_machine_is_compatible("MPC8540") ||
|
||||
of_machine_is_compatible("MPC8560"))
|
||||
/*
|
||||
* Assume L2 SRAM is used fully for cache, so set
|
||||
* L2BLKSZ (bits 4:5) to match L2SIZ (bits 2:3).
|
||||
|
||||
@@ -48,7 +48,7 @@ static int __init cbe_powerbutton_init(void)
|
||||
int ret = 0;
|
||||
struct input_dev *dev;
|
||||
|
||||
if (!machine_is_compatible("IBM,CBPLUS-1.0")) {
|
||||
if (!of_machine_is_compatible("IBM,CBPLUS-1.0")) {
|
||||
printk(KERN_ERR "%s: Not a cell blade.\n", __func__);
|
||||
ret = -ENODEV;
|
||||
goto out;
|
||||
|
||||
@@ -255,7 +255,7 @@ static int __init cbe_sysreset_init(void)
|
||||
{
|
||||
struct cbe_pmd_regs __iomem *regs;
|
||||
|
||||
sysreset_hack = machine_is_compatible("IBM,CBPLUS-1.0");
|
||||
sysreset_hack = of_machine_is_compatible("IBM,CBPLUS-1.0");
|
||||
if (!sysreset_hack)
|
||||
return 0;
|
||||
|
||||
|
||||
@@ -304,8 +304,8 @@ static struct cpufreq_driver pas_cpufreq_driver = {
|
||||
|
||||
static int __init pas_cpufreq_init(void)
|
||||
{
|
||||
if (!machine_is_compatible("PA6T-1682M") &&
|
||||
!machine_is_compatible("pasemi,pwrficient"))
|
||||
if (!of_machine_is_compatible("PA6T-1682M") &&
|
||||
!of_machine_is_compatible("pasemi,pwrficient"))
|
||||
return -ENODEV;
|
||||
|
||||
return cpufreq_register_driver(&pas_cpufreq_driver);
|
||||
|
||||
@@ -657,31 +657,31 @@ static int __init pmac_cpufreq_setup(void)
|
||||
cur_freq = (*value) / 1000;
|
||||
|
||||
/* Check for 7447A based MacRISC3 */
|
||||
if (machine_is_compatible("MacRISC3") &&
|
||||
if (of_machine_is_compatible("MacRISC3") &&
|
||||
of_get_property(cpunode, "dynamic-power-step", NULL) &&
|
||||
PVR_VER(mfspr(SPRN_PVR)) == 0x8003) {
|
||||
pmac_cpufreq_init_7447A(cpunode);
|
||||
/* Check for other MacRISC3 machines */
|
||||
} else if (machine_is_compatible("PowerBook3,4") ||
|
||||
machine_is_compatible("PowerBook3,5") ||
|
||||
machine_is_compatible("MacRISC3")) {
|
||||
} else if (of_machine_is_compatible("PowerBook3,4") ||
|
||||
of_machine_is_compatible("PowerBook3,5") ||
|
||||
of_machine_is_compatible("MacRISC3")) {
|
||||
pmac_cpufreq_init_MacRISC3(cpunode);
|
||||
/* Else check for iBook2 500/600 */
|
||||
} else if (machine_is_compatible("PowerBook4,1")) {
|
||||
} else if (of_machine_is_compatible("PowerBook4,1")) {
|
||||
hi_freq = cur_freq;
|
||||
low_freq = 400000;
|
||||
set_speed_proc = pmu_set_cpu_speed;
|
||||
is_pmu_based = 1;
|
||||
}
|
||||
/* Else check for TiPb 550 */
|
||||
else if (machine_is_compatible("PowerBook3,3") && cur_freq == 550000) {
|
||||
else if (of_machine_is_compatible("PowerBook3,3") && cur_freq == 550000) {
|
||||
hi_freq = cur_freq;
|
||||
low_freq = 500000;
|
||||
set_speed_proc = pmu_set_cpu_speed;
|
||||
is_pmu_based = 1;
|
||||
}
|
||||
/* Else check for TiPb 400 & 500 */
|
||||
else if (machine_is_compatible("PowerBook3,2")) {
|
||||
else if (of_machine_is_compatible("PowerBook3,2")) {
|
||||
/* We only know about the 400 MHz and the 500Mhz model
|
||||
* they both have 300 MHz as low frequency
|
||||
*/
|
||||
|
||||
@@ -398,11 +398,11 @@ static int __init g5_neo2_cpufreq_init(struct device_node *cpus)
|
||||
int rc = -ENODEV;
|
||||
|
||||
/* Check supported platforms */
|
||||
if (machine_is_compatible("PowerMac8,1") ||
|
||||
machine_is_compatible("PowerMac8,2") ||
|
||||
machine_is_compatible("PowerMac9,1"))
|
||||
if (of_machine_is_compatible("PowerMac8,1") ||
|
||||
of_machine_is_compatible("PowerMac8,2") ||
|
||||
of_machine_is_compatible("PowerMac9,1"))
|
||||
use_volts_smu = 1;
|
||||
else if (machine_is_compatible("PowerMac11,2"))
|
||||
else if (of_machine_is_compatible("PowerMac11,2"))
|
||||
use_volts_vdnap = 1;
|
||||
else
|
||||
return -ENODEV;
|
||||
@@ -729,9 +729,9 @@ static int __init g5_cpufreq_init(void)
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (machine_is_compatible("PowerMac7,2") ||
|
||||
machine_is_compatible("PowerMac7,3") ||
|
||||
machine_is_compatible("RackMac3,1"))
|
||||
if (of_machine_is_compatible("PowerMac7,2") ||
|
||||
of_machine_is_compatible("PowerMac7,3") ||
|
||||
of_machine_is_compatible("RackMac3,1"))
|
||||
rc = g5_pm72_cpufreq_init(cpus);
|
||||
#ifdef CONFIG_PMAC_SMU
|
||||
else
|
||||
|
||||
@@ -2426,7 +2426,7 @@ static int __init probe_motherboard(void)
|
||||
}
|
||||
}
|
||||
for(i=0; i<ARRAY_SIZE(pmac_mb_defs); i++) {
|
||||
if (machine_is_compatible(pmac_mb_defs[i].model_string)) {
|
||||
if (of_machine_is_compatible(pmac_mb_defs[i].model_string)) {
|
||||
pmac_mb = pmac_mb_defs[i];
|
||||
goto found;
|
||||
}
|
||||
|
||||
@@ -693,9 +693,9 @@ static void __init smp_core99_setup(int ncpus)
|
||||
#ifdef CONFIG_PPC64
|
||||
|
||||
/* i2c based HW sync on some G5s */
|
||||
if (machine_is_compatible("PowerMac7,2") ||
|
||||
machine_is_compatible("PowerMac7,3") ||
|
||||
machine_is_compatible("RackMac3,1"))
|
||||
if (of_machine_is_compatible("PowerMac7,2") ||
|
||||
of_machine_is_compatible("PowerMac7,3") ||
|
||||
of_machine_is_compatible("RackMac3,1"))
|
||||
smp_core99_setup_i2c_hwsync(ncpus);
|
||||
|
||||
/* pfunc based HW sync on recent G5s */
|
||||
@@ -713,7 +713,7 @@ static void __init smp_core99_setup(int ncpus)
|
||||
#else /* CONFIG_PPC64 */
|
||||
|
||||
/* GPIO based HW sync on ppc32 Core99 */
|
||||
if (pmac_tb_freeze == NULL && !machine_is_compatible("MacRISC4")) {
|
||||
if (pmac_tb_freeze == NULL && !of_machine_is_compatible("MacRISC4")) {
|
||||
struct device_node *cpu;
|
||||
const u32 *tbprop = NULL;
|
||||
|
||||
@@ -750,7 +750,7 @@ static void __init smp_core99_setup(int ncpus)
|
||||
#endif
|
||||
|
||||
/* 32 bits SMP can't NAP */
|
||||
if (!machine_is_compatible("MacRISC4"))
|
||||
if (!of_machine_is_compatible("MacRISC4"))
|
||||
powersave_nap = 0;
|
||||
}
|
||||
|
||||
@@ -852,7 +852,7 @@ static void __devinit smp_core99_setup_cpu(int cpu_nr)
|
||||
/* If we didn't start the second CPU, we must take
|
||||
* it off the bus
|
||||
*/
|
||||
if (machine_is_compatible("MacRISC4") &&
|
||||
if (of_machine_is_compatible("MacRISC4") &&
|
||||
num_online_cpus() < 2)
|
||||
g5_phy_disable_cpu1();
|
||||
#endif /* CONFIG_PPC64 */
|
||||
|
||||
@@ -317,9 +317,9 @@ void __init pmac_calibrate_decr(void)
|
||||
* calibration. That's better since the VIA itself seems
|
||||
* to be slightly off. --BenH
|
||||
*/
|
||||
if (!machine_is_compatible("MacRISC2") &&
|
||||
!machine_is_compatible("MacRISC3") &&
|
||||
!machine_is_compatible("MacRISC4"))
|
||||
if (!of_machine_is_compatible("MacRISC2") &&
|
||||
!of_machine_is_compatible("MacRISC3") &&
|
||||
!of_machine_is_compatible("MacRISC4"))
|
||||
if (via_calibrate_decr())
|
||||
return;
|
||||
|
||||
@@ -328,7 +328,7 @@ void __init pmac_calibrate_decr(void)
|
||||
* probably implement calibration based on the KL timer on these
|
||||
* machines anyway... -BenH
|
||||
*/
|
||||
if (machine_is_compatible("PowerMac3,5"))
|
||||
if (of_machine_is_compatible("PowerMac3,5"))
|
||||
if (via_calibrate_decr())
|
||||
return;
|
||||
#endif
|
||||
|
||||
@@ -132,9 +132,9 @@ void udbg_scc_init(int force_scc)
|
||||
scc_inittab[1] = in_8(sccc);
|
||||
out_8(sccc, 12);
|
||||
scc_inittab[3] = in_8(sccc);
|
||||
} else if (machine_is_compatible("RackMac1,1")
|
||||
|| machine_is_compatible("RackMac1,2")
|
||||
|| machine_is_compatible("MacRISC4")) {
|
||||
} else if (of_machine_is_compatible("RackMac1,1")
|
||||
|| of_machine_is_compatible("RackMac1,2")
|
||||
|| of_machine_is_compatible("MacRISC4")) {
|
||||
/* Xserves and G5s default to 57600 */
|
||||
scc_inittab[1] = 0;
|
||||
scc_inittab[3] = 0;
|
||||
|
||||
@@ -56,9 +56,9 @@ static inline void grackle_set_loop_snoop(struct pci_controller *bp, int enable)
|
||||
void __init setup_grackle(struct pci_controller *hose)
|
||||
{
|
||||
setup_indirect_pci(hose, 0xfec00000, 0xfee00000, 0);
|
||||
if (machine_is_compatible("PowerMac1,1"))
|
||||
if (of_machine_is_compatible("PowerMac1,1"))
|
||||
ppc_pci_add_flags(PPC_PCI_REASSIGN_ALL_BUS);
|
||||
if (machine_is_compatible("AAPL,PowerBook1998"))
|
||||
if (of_machine_is_compatible("AAPL,PowerBook1998"))
|
||||
grackle_set_loop_snoop(hose, 1);
|
||||
#if 0 /* Disabled for now, HW problems ??? */
|
||||
grackle_set_stg(hose, 1);
|
||||
|
||||
@@ -99,7 +99,7 @@ static int hvc_beat_config(char *p)
|
||||
|
||||
static int __init hvc_beat_console_init(void)
|
||||
{
|
||||
if (hvc_beat_useit && machine_is_compatible("Beat")) {
|
||||
if (hvc_beat_useit && of_machine_is_compatible("Beat")) {
|
||||
hvc_instantiate(0, 0, &hvc_beat_get_put_ops);
|
||||
}
|
||||
return 0;
|
||||
|
||||
@@ -1280,47 +1280,47 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev)
|
||||
rdev->mode_info.connector_table = radeon_connector_table;
|
||||
if (rdev->mode_info.connector_table == CT_NONE) {
|
||||
#ifdef CONFIG_PPC_PMAC
|
||||
if (machine_is_compatible("PowerBook3,3")) {
|
||||
if (of_machine_is_compatible("PowerBook3,3")) {
|
||||
/* powerbook with VGA */
|
||||
rdev->mode_info.connector_table = CT_POWERBOOK_VGA;
|
||||
} else if (machine_is_compatible("PowerBook3,4") ||
|
||||
machine_is_compatible("PowerBook3,5")) {
|
||||
} else if (of_machine_is_compatible("PowerBook3,4") ||
|
||||
of_machine_is_compatible("PowerBook3,5")) {
|
||||
/* powerbook with internal tmds */
|
||||
rdev->mode_info.connector_table = CT_POWERBOOK_INTERNAL;
|
||||
} else if (machine_is_compatible("PowerBook5,1") ||
|
||||
machine_is_compatible("PowerBook5,2") ||
|
||||
machine_is_compatible("PowerBook5,3") ||
|
||||
machine_is_compatible("PowerBook5,4") ||
|
||||
machine_is_compatible("PowerBook5,5")) {
|
||||
} else if (of_machine_is_compatible("PowerBook5,1") ||
|
||||
of_machine_is_compatible("PowerBook5,2") ||
|
||||
of_machine_is_compatible("PowerBook5,3") ||
|
||||
of_machine_is_compatible("PowerBook5,4") ||
|
||||
of_machine_is_compatible("PowerBook5,5")) {
|
||||
/* powerbook with external single link tmds (sil164) */
|
||||
rdev->mode_info.connector_table = CT_POWERBOOK_EXTERNAL;
|
||||
} else if (machine_is_compatible("PowerBook5,6")) {
|
||||
} else if (of_machine_is_compatible("PowerBook5,6")) {
|
||||
/* powerbook with external dual or single link tmds */
|
||||
rdev->mode_info.connector_table = CT_POWERBOOK_EXTERNAL;
|
||||
} else if (machine_is_compatible("PowerBook5,7") ||
|
||||
machine_is_compatible("PowerBook5,8") ||
|
||||
machine_is_compatible("PowerBook5,9")) {
|
||||
} else if (of_machine_is_compatible("PowerBook5,7") ||
|
||||
of_machine_is_compatible("PowerBook5,8") ||
|
||||
of_machine_is_compatible("PowerBook5,9")) {
|
||||
/* PowerBook6,2 ? */
|
||||
/* powerbook with external dual link tmds (sil1178?) */
|
||||
rdev->mode_info.connector_table = CT_POWERBOOK_EXTERNAL;
|
||||
} else if (machine_is_compatible("PowerBook4,1") ||
|
||||
machine_is_compatible("PowerBook4,2") ||
|
||||
machine_is_compatible("PowerBook4,3") ||
|
||||
machine_is_compatible("PowerBook6,3") ||
|
||||
machine_is_compatible("PowerBook6,5") ||
|
||||
machine_is_compatible("PowerBook6,7")) {
|
||||
} else if (of_machine_is_compatible("PowerBook4,1") ||
|
||||
of_machine_is_compatible("PowerBook4,2") ||
|
||||
of_machine_is_compatible("PowerBook4,3") ||
|
||||
of_machine_is_compatible("PowerBook6,3") ||
|
||||
of_machine_is_compatible("PowerBook6,5") ||
|
||||
of_machine_is_compatible("PowerBook6,7")) {
|
||||
/* ibook */
|
||||
rdev->mode_info.connector_table = CT_IBOOK;
|
||||
} else if (machine_is_compatible("PowerMac4,4")) {
|
||||
} else if (of_machine_is_compatible("PowerMac4,4")) {
|
||||
/* emac */
|
||||
rdev->mode_info.connector_table = CT_EMAC;
|
||||
} else if (machine_is_compatible("PowerMac10,1")) {
|
||||
} else if (of_machine_is_compatible("PowerMac10,1")) {
|
||||
/* mini with internal tmds */
|
||||
rdev->mode_info.connector_table = CT_MINI_INTERNAL;
|
||||
} else if (machine_is_compatible("PowerMac10,2")) {
|
||||
} else if (of_machine_is_compatible("PowerMac10,2")) {
|
||||
/* mini with external tmds */
|
||||
rdev->mode_info.connector_table = CT_MINI_EXTERNAL;
|
||||
} else if (machine_is_compatible("PowerMac12,1")) {
|
||||
} else if (of_machine_is_compatible("PowerMac12,1")) {
|
||||
/* PowerMac8,1 ? */
|
||||
/* imac g5 isight */
|
||||
rdev->mode_info.connector_table = CT_IMAC_G5_ISIGHT;
|
||||
|
||||
@@ -322,8 +322,8 @@ static int __init adb_init(void)
|
||||
adb_controller = NULL;
|
||||
} else {
|
||||
#ifdef CONFIG_PPC
|
||||
if (machine_is_compatible("AAPL,PowerBook1998") ||
|
||||
machine_is_compatible("PowerBook1,1"))
|
||||
if (of_machine_is_compatible("AAPL,PowerBook1998") ||
|
||||
of_machine_is_compatible("PowerBook1,1"))
|
||||
sleepy_trackpad = 1;
|
||||
#endif /* CONFIG_PPC */
|
||||
|
||||
|
||||
@@ -1899,7 +1899,7 @@ static int create_control_loops(void)
|
||||
*/
|
||||
if (rackmac)
|
||||
cpu_pid_type = CPU_PID_TYPE_RACKMAC;
|
||||
else if (machine_is_compatible("PowerMac7,3")
|
||||
else if (of_machine_is_compatible("PowerMac7,3")
|
||||
&& (cpu_count > 1)
|
||||
&& fcu_fans[CPUA_PUMP_RPM_INDEX].id != FCU_FAN_ABSENT_ID
|
||||
&& fcu_fans[CPUB_PUMP_RPM_INDEX].id != FCU_FAN_ABSENT_ID) {
|
||||
@@ -2234,10 +2234,10 @@ static int __init therm_pm72_init(void)
|
||||
{
|
||||
struct device_node *np;
|
||||
|
||||
rackmac = machine_is_compatible("RackMac3,1");
|
||||
rackmac = of_machine_is_compatible("RackMac3,1");
|
||||
|
||||
if (!machine_is_compatible("PowerMac7,2") &&
|
||||
!machine_is_compatible("PowerMac7,3") &&
|
||||
if (!of_machine_is_compatible("PowerMac7,2") &&
|
||||
!of_machine_is_compatible("PowerMac7,3") &&
|
||||
!rackmac)
|
||||
return -ENODEV;
|
||||
|
||||
|
||||
@@ -490,7 +490,7 @@ g4fan_init( void )
|
||||
info = of_get_property(np, "thermal-info", NULL);
|
||||
of_node_put(np);
|
||||
|
||||
if( !info || !machine_is_compatible("PowerMac3,6") )
|
||||
if( !info || !of_machine_is_compatible("PowerMac3,6") )
|
||||
return -ENODEV;
|
||||
|
||||
if( info->id != 3 ) {
|
||||
|
||||
@@ -150,13 +150,13 @@ void __init pmu_backlight_init()
|
||||
|
||||
/* Special case for the old PowerBook since I can't test on it */
|
||||
autosave =
|
||||
machine_is_compatible("AAPL,3400/2400") ||
|
||||
machine_is_compatible("AAPL,3500");
|
||||
of_machine_is_compatible("AAPL,3400/2400") ||
|
||||
of_machine_is_compatible("AAPL,3500");
|
||||
|
||||
if (!autosave &&
|
||||
!pmac_has_backlight_type("pmu") &&
|
||||
!machine_is_compatible("AAPL,PowerBook1998") &&
|
||||
!machine_is_compatible("PowerBook1,1"))
|
||||
!of_machine_is_compatible("AAPL,PowerBook1998") &&
|
||||
!of_machine_is_compatible("PowerBook1,1"))
|
||||
return;
|
||||
|
||||
snprintf(name, sizeof(name), "pmubl");
|
||||
|
||||
@@ -463,8 +463,8 @@ static int __init via_pmu_dev_init(void)
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_PPC32
|
||||
if (machine_is_compatible("AAPL,3400/2400") ||
|
||||
machine_is_compatible("AAPL,3500")) {
|
||||
if (of_machine_is_compatible("AAPL,3400/2400") ||
|
||||
of_machine_is_compatible("AAPL,3500")) {
|
||||
int mb = pmac_call_feature(PMAC_FTR_GET_MB_INFO,
|
||||
NULL, PMAC_MB_INFO_MODEL, 0);
|
||||
pmu_battery_count = 1;
|
||||
@@ -472,8 +472,8 @@ static int __init via_pmu_dev_init(void)
|
||||
pmu_batteries[0].flags |= PMU_BATT_TYPE_COMET;
|
||||
else
|
||||
pmu_batteries[0].flags |= PMU_BATT_TYPE_HOOPER;
|
||||
} else if (machine_is_compatible("AAPL,PowerBook1998") ||
|
||||
machine_is_compatible("PowerBook1,1")) {
|
||||
} else if (of_machine_is_compatible("AAPL,PowerBook1998") ||
|
||||
of_machine_is_compatible("PowerBook1,1")) {
|
||||
pmu_battery_count = 2;
|
||||
pmu_batteries[0].flags |= PMU_BATT_TYPE_SMART;
|
||||
pmu_batteries[1].flags |= PMU_BATT_TYPE_SMART;
|
||||
|
||||
@@ -468,9 +468,9 @@ static int __init windfarm_core_init(void)
|
||||
DBG("wf: core loaded\n");
|
||||
|
||||
/* Don't register on old machines that use therm_pm72 for now */
|
||||
if (machine_is_compatible("PowerMac7,2") ||
|
||||
machine_is_compatible("PowerMac7,3") ||
|
||||
machine_is_compatible("RackMac3,1"))
|
||||
if (of_machine_is_compatible("PowerMac7,2") ||
|
||||
of_machine_is_compatible("PowerMac7,3") ||
|
||||
of_machine_is_compatible("RackMac3,1"))
|
||||
return -ENODEV;
|
||||
platform_device_register(&wf_platform_device);
|
||||
return 0;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user