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:
parent
70e9c7aed3
commit
e25f1f9f2a
3 changed files with 30 additions and 29 deletions
|
|
@ -285,7 +285,7 @@ MAKE_MENU(system_menu, ID2P(LANG_SYSTEM),
|
||||||
#if CONFIG_CHARGING
|
#if CONFIG_CHARGING
|
||||||
&car_adapter_mode,
|
&car_adapter_mode,
|
||||||
#endif
|
#endif
|
||||||
#ifdef IPOD_ACCESSORY_PROTOCOL,
|
#ifdef IPOD_ACCESSORY_PROTOCOL
|
||||||
&serial_bitrate,
|
&serial_bitrate,
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_ACCESSORY_SUPPLY
|
#ifdef HAVE_ACCESSORY_SUPPLY
|
||||||
|
|
|
||||||
|
|
@ -445,8 +445,9 @@ int rx_rdy(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void tx_writec(unsigned char c)
|
void tx_writec(const unsigned char c)
|
||||||
{
|
{
|
||||||
|
(void)c;
|
||||||
/* a dummy */
|
/* a dummy */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
int tx_rdy(void);
|
int tx_rdy(void);
|
||||||
int rx_rdy(void);
|
int rx_rdy(void);
|
||||||
void tx_writec(const char c);
|
void tx_writec(const unsigned char c);
|
||||||
void dprintf(const char * str, ... );
|
void dprintf(const char * str, ... );
|
||||||
|
|
||||||
#endif /* SERIAL_IMX31_H */
|
#endif /* SERIAL_IMX31_H */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue