diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2010-02-01 21:34:14 -0700 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-02-09 08:33:00 -0700 |
commit | 71a157e8edca55198e808f8561dd49017a54ee34 (patch) | |
tree | a78185ea8204f1e375d88545235ba3d4937ebfaf /sound/soc/fsl/efika-audio-fabric.c | |
parent | 89751a7cb70a20f0d604dd7c4be29dd7b0011718 (diff) | |
download | linux-71a157e8edca55198e808f8561dd49017a54ee34.tar.gz linux-71a157e8edca55198e808f8561dd49017a54ee34.tar.bz2 linux-71a157e8edca55198e808f8561dd49017a54ee34.zip |
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>
Diffstat (limited to 'sound/soc/fsl/efika-audio-fabric.c')
-rw-r--r-- | sound/soc/fsl/efika-audio-fabric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/fsl/efika-audio-fabric.c b/sound/soc/fsl/efika-audio-fabric.c index 3326e2a1e863..1a5b8e0d6a34 100644 --- a/sound/soc/fsl/efika-audio-fabric.c +++ b/sound/soc/fsl/efika-audio-fabric.c @@ -55,7 +55,7 @@ static __init int efika_fabric_init(void) struct platform_device *pdev; int rc; - if (!machine_is_compatible("bplan,efika")) + if (!of_machine_is_compatible("bplan,efika")) return -ENODEV; card.platform = &mpc5200_audio_dma_platform; |