ARM: OMAP1: Move omap_init_audio() to keep the devices in alphabetical order
The comments in omap1_init_devices() ask to keep the devices in alphabetical order. Only omap_init_audio() is not following this, so let's move it. No functional changes. Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
65c9803839
commit
fcc76a8506
|
@ -31,6 +31,22 @@
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "clock.h"
|
#include "clock.h"
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
|
||||||
|
|
||||||
|
static struct platform_device omap_pcm = {
|
||||||
|
.name = "omap-pcm-audio",
|
||||||
|
.id = -1,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void omap_init_audio(void)
|
||||||
|
{
|
||||||
|
platform_device_register(&omap_pcm);
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
static inline void omap_init_audio(void) {}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*/
|
/*-------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
|
#if defined(CONFIG_RTC_DRV_OMAP) || defined(CONFIG_RTC_DRV_OMAP_MODULE)
|
||||||
|
@ -242,24 +258,6 @@ void __init omap1_camera_init(void *info)
|
||||||
|
|
||||||
static inline void omap_init_sti(void) {}
|
static inline void omap_init_sti(void) {}
|
||||||
|
|
||||||
#if defined(CONFIG_SND_SOC) || defined(CONFIG_SND_SOC_MODULE)
|
|
||||||
|
|
||||||
static struct platform_device omap_pcm = {
|
|
||||||
.name = "omap-pcm-audio",
|
|
||||||
.id = -1,
|
|
||||||
};
|
|
||||||
|
|
||||||
static void omap_init_audio(void)
|
|
||||||
{
|
|
||||||
platform_device_register(&omap_pcm);
|
|
||||||
}
|
|
||||||
|
|
||||||
#else
|
|
||||||
static inline void omap_init_audio(void) {}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*-------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This gets called after board-specific INIT_MACHINE, and initializes most
|
* This gets called after board-specific INIT_MACHINE, and initializes most
|
||||||
* on-chip peripherals accessible on this board (except for few like USB):
|
* on-chip peripherals accessible on this board (except for few like USB):
|
||||||
|
@ -292,11 +290,11 @@ static int __init omap1_init_devices(void)
|
||||||
* in alphabetical order so they're easier to sort through.
|
* in alphabetical order so they're easier to sort through.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
omap_init_audio();
|
||||||
omap_init_mbox();
|
omap_init_mbox();
|
||||||
omap_init_rtc();
|
omap_init_rtc();
|
||||||
omap_init_spi100k();
|
omap_init_spi100k();
|
||||||
omap_init_sti();
|
omap_init_sti();
|
||||||
omap_init_audio();
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue