mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
imx233/fuze+: don't compile {touchpad code,sd} in bootloader mode, fix style in mmc
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30112 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
82ecc75e68
commit
88f75d096e
4 changed files with 19 additions and 10 deletions
|
|
@ -69,7 +69,7 @@ int mmc_init(void)
|
|||
imx233_ssp_set_bus_width(MMC_SSP, 1);
|
||||
imx233_ssp_set_block_size(MMC_SSP, 9);
|
||||
/* go to idle state */
|
||||
int ret = imx233_ssp_sd_mmc_transfer(MMC_SSP, SD_GO_IDLE_STATE, 0, SSP_NO_RESP, NULL, 0, false, false, NULL);
|
||||
int ret = imx233_ssp_sd_mmc_transfer(MMC_SSP, 0, 0, SSP_NO_RESP, NULL, 0, false, false, NULL);
|
||||
if(ret != 0)
|
||||
return -1;
|
||||
/* send op cond until the card respond with busy bit set; it must complete within 1sec */
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
#include "lcd.h"
|
||||
#include "string.h"
|
||||
|
||||
#ifndef BOOTLOADER
|
||||
static void i2c_scl_dir(bool out)
|
||||
{
|
||||
imx233_enable_gpio_output(0, 30, out);
|
||||
|
|
@ -251,6 +252,14 @@ void button_init_device(void)
|
|||
RMI_2D_GESTURE_FLICK_TIME_700MS << RMI_2D_GESTURE_FLICK_TIME_BP);
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
void button_init_device(void)
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
int button_read_device(void)
|
||||
{
|
||||
int res = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue