1
0
Fork 0
forked from len0rd/rockbox

Hopefully fix read.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19586 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Giacomelli 2008-12-25 03:23:22 +00:00
parent 70e9c7aed3
commit e25f1f9f2a
3 changed files with 30 additions and 29 deletions

View file

@ -285,7 +285,7 @@ MAKE_MENU(system_menu, ID2P(LANG_SYSTEM),
#if CONFIG_CHARGING
&car_adapter_mode,
#endif
#ifdef IPOD_ACCESSORY_PROTOCOL,
#ifdef IPOD_ACCESSORY_PROTOCOL
&serial_bitrate,
#endif
#ifdef HAVE_ACCESSORY_SUPPLY

View file

@ -445,8 +445,9 @@ int rx_rdy(void)
return 0;
}
void tx_writec(unsigned char c)
void tx_writec(const unsigned char c)
{
(void)c;
/* a dummy */
}

View file

@ -26,7 +26,7 @@
int tx_rdy(void);
int rx_rdy(void);
void tx_writec(const char c);
void tx_writec(const unsigned char c);
void dprintf(const char * str, ... );
#endif /* SERIAL_IMX31_H */