
11 May
2015
11 May
'15
7:15 p.m.
On Mon, May 11, 2015 at 04:14:47AM +0000, Kuninori Morimoto wrote:
Not quite sure what "flag control" is here, sorry?
Sorry for my confusable words. Takashi mentioned
.dpcm_merged_foramt .dpcm_merged_rate .dpcm_merged_chan
Better to have bit flags.
I guess Takashi means like this
u32 xxx_flags #define DPCM_xxxx_FORMAT (1 << 0) #define DPCM_xxxx_RATE (1 << 1) #define DPCM_xxxx_CHAN (1 << 2)
But, this .dpcm_merged_xxx is defined as
unsigned int dpcm_merged_foramt:1;
"flag control" here means #defined DPCM_xxxx_CHAN flag, and I think we don't need it.
OK, right. Yes, we can probably live without.