Re: [PATCH v2] ASoC: audio-graph-card: Constify reg in graph_get_dai_id

2019-07-11 Thread Nathan Chancellor
On Fri, Jul 12, 2019 at 12:37:51PM +0900, Kuninori Morimoto wrote: > > Hi Nathan > > > clang errors: > > > > sound/soc/generic/audio-graph-card.c:87:7: error: assigning to 'u32 *' > > (aka 'unsigned int *') from 'const void *' discards qualifiers > >

Re: [PATCH v2] ASoC: audio-graph-card: Constify reg in graph_get_dai_id

2019-07-11 Thread Kuninori Morimoto
Hi Nathan > clang errors: > > sound/soc/generic/audio-graph-card.c:87:7: error: assigning to 'u32 *' > (aka 'unsigned int *') from 'const void *' discards qualifiers > [-Werror,-Wincompatible-pointer-types-discards-qualifiers] > reg = of_get_property(node, "reg", NULL); >

[PATCH v2] ASoC: audio-graph-card: Constify reg in graph_get_dai_id

2019-07-11 Thread Nathan Chancellor
clang errors: sound/soc/generic/audio-graph-card.c:87:7: error: assigning to 'u32 *' (aka 'unsigned int *') from 'const void *' discards qualifiers [-Werror,-Wincompatible-pointer-types-discards-qualifiers] reg = of_get_property(node, "reg", NULL); ^