|
@@ -473,6 +473,7 @@ void omap_mcbsp_set_tx_threshold(unsigned int id, u16 threshold);
|
|
|
void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold);
|
|
|
u16 omap_mcbsp_get_max_tx_threshold(unsigned int id);
|
|
|
u16 omap_mcbsp_get_max_rx_threshold(unsigned int id);
|
|
|
+u16 omap_mcbsp_get_fifo_size(unsigned int id);
|
|
|
u16 omap_mcbsp_get_tx_delay(unsigned int id);
|
|
|
u16 omap_mcbsp_get_rx_delay(unsigned int id);
|
|
|
int omap_mcbsp_get_dma_op_mode(unsigned int id);
|
|
@@ -483,6 +484,7 @@ static inline void omap_mcbsp_set_rx_threshold(unsigned int id, u16 threshold)
|
|
|
{ }
|
|
|
static inline u16 omap_mcbsp_get_max_tx_threshold(unsigned int id) { return 0; }
|
|
|
static inline u16 omap_mcbsp_get_max_rx_threshold(unsigned int id) { return 0; }
|
|
|
+static inline u16 omap_mcbsp_get_fifo_size(unsigned int id) { return 0; }
|
|
|
static inline u16 omap_mcbsp_get_tx_delay(unsigned int id) { return 0; }
|
|
|
static inline u16 omap_mcbsp_get_rx_delay(unsigned int id) { return 0; }
|
|
|
static inline int omap_mcbsp_get_dma_op_mode(unsigned int id) { return 0; }
|