Remove i2c chanend argument from config functions.

This commit is contained in:
Russell
2011-11-17 15:17:26 +00:00
parent 9a3b011c95
commit 36246a4f2d
5 changed files with 12 additions and 14 deletions

View File

@@ -6,9 +6,9 @@
/* TODO Are the channel args required? */
/* Any required CODEC initialisation - run once at start up */
void CodecInit(chanend ?c_codec, chanend ?c_i2c);
void CodecInit(chanend ?c_codec);
/* Configure condec for a specific mClk/Sample frquency - run on every sample frequency change */
void CodecConfig(unsigned samFreq, unsigned mClk, chanend ?c_codec, chanend ?c_i2c);
void CodecConfig(unsigned samFreq, unsigned mClk, chanend ?c_codec);
#endif