Skip to content
Snippets Groups Projects
Commit fff1a572 authored by Peter Meerwald's avatar Peter Meerwald Committed by Albert ARIBAUD
Browse files

beagle: make get_expansion_id(), get_board_revision(), beagle_display_init() static

parent b4ebeb86
No related branches found
No related tags found
No related merge requests found
...@@ -112,7 +112,7 @@ int board_init(void) ...@@ -112,7 +112,7 @@ int board_init(void)
* GPIO173, GPIO172, GPIO171: 1 0 1 => C4 * GPIO173, GPIO172, GPIO171: 1 0 1 => C4
* GPIO173, GPIO172, GPIO171: 0 0 0 => xM * GPIO173, GPIO172, GPIO171: 0 0 0 => xM
*/ */
int get_board_revision(void) static int get_board_revision(void)
{ {
int revision; int revision;
...@@ -211,7 +211,7 @@ void get_board_mem_timings(u32 *mcfg, u32 *ctrla, u32 *ctrlb, u32 *rfr_ctrl, ...@@ -211,7 +211,7 @@ void get_board_mem_timings(u32 *mcfg, u32 *ctrla, u32 *ctrlb, u32 *rfr_ctrl,
* bus 1 for the availability of an AT24C01B serial EEPROM. * bus 1 for the availability of an AT24C01B serial EEPROM.
* returns the device_vendor field from the EEPROM * returns the device_vendor field from the EEPROM
*/ */
unsigned int get_expansion_id(void) static unsigned int get_expansion_id(void)
{ {
i2c_set_bus_num(EXPANSION_EEPROM_I2C_BUS); i2c_set_bus_num(EXPANSION_EEPROM_I2C_BUS);
...@@ -234,7 +234,7 @@ unsigned int get_expansion_id(void) ...@@ -234,7 +234,7 @@ unsigned int get_expansion_id(void)
* Configure DSS to display background color on DVID * Configure DSS to display background color on DVID
* Configure VENC to display color bar on S-Video * Configure VENC to display color bar on S-Video
*/ */
void beagle_display_init(void) static void beagle_display_init(void)
{ {
omap3_dss_venc_config(&venc_config_std_tv, VENC_HEIGHT, VENC_WIDTH); omap3_dss_venc_config(&venc_config_std_tv, VENC_HEIGHT, VENC_WIDTH);
switch (get_board_revision()) { switch (get_board_revision()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment