On Wed, 20 Apr 2011 14:43:29 +1000 Stephen Rothwell wrote: > Hi all, > Merging sound/for-next > Merging sound-asoc/for-next Takashi, mainline contains commit a2800300f28bd1814f3ba8cfd93ecb0b00c2dfe3 Author: Takashi Iwai <tiwai@xxxxxxx> Date: Tue Mar 8 18:20:46 2011 +0100 ALSA: asihpi - Use %zd for size_t argument in error message which changes: --- a/sound/pci/asihpi/hpi6205.c +++ b/sound/pci/asihpi/hpi6205.c @@ -2088,7 +2088,7 @@ static u16 message_response_sequence(struct hpi_adapter_ob j *pao, phr->specific_error = sizeof(interface->u); phr->size = sizeof(struct hpi_response_header); HPI_DEBUG_LOG(ERROR, - "message len %d too big for buffer %ld \n", phm->size, + "message len %d too big for buffer %zd \n", phm->size, sizeof(interface->u)); return 0; } However, it looks like there is a patch in your for-next branch which undoes that commit, since hpi6205.c still uses %ld to print the sizeof() value and this warning is still produced: linux-next-20110420/sound/pci/asihpi/hpi6205.c:2091: warning: format '%ld' expects type 'long int', but argument 3 has type 'unsigned int' Please drop at least that one line from for-next. or am I completely befuddled? thanks, --- ~Randy *** Remember to use Documentation/SubmitChecklist when testing your code *** -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html