From mboxrd@z Thu Jan 1 00:00:00 1970 From: Clemens Ladisch Subject: Re: [PATCH 02/29] ALSA: dice: Move file to its own directory Date: Tue, 18 Nov 2014 13:57:27 +0100 Message-ID: <546B4237.30706@ladisch.de> References: <1414328610-12729-1-git-send-email-o-takashi@sakamocchi.jp> <1414328610-12729-3-git-send-email-o-takashi@sakamocchi.jp> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from dehamd003.servertools24.de (dehamd003.servertools24.de [31.47.254.18]) by alsa0.perex.cz (Postfix) with ESMTP id A42FC265175 for ; Tue, 18 Nov 2014 13:57:29 +0100 (CET) In-Reply-To: <1414328610-12729-3-git-send-email-o-takashi@sakamocchi.jp> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Takashi Sakamoto Cc: tiwai@suse.de, alsa-devel@alsa-project.org, ffado-devel@lists.sourceforge.net List-Id: alsa-devel@alsa-project.org Takashi Sakamoto wrote: > In followed commits, dice driver is split into several files. For easily > managing these files, this commit adds subdirectory and move file into > the directory. > -// TODO: rx index > +/* TODO: rx index */ > - event.dice_notification.type = SNDRV_FIREWIRE_EVENT_DICE_NOTIFICATION; > + event.dice_notification.type = > + SNDRV_FIREWIRE_EVENT_DICE_NOTIFICATION; > - count = min(count, (long)sizeof(event.dice_notification)); > + count = min_t(long, count, sizeof(event.dice_notification)); > -static void dice_bus_reset(struct fw_unit *unit) > +static void dice_update(struct fw_unit *unit) Please mention these changes in the commit message, or move them into a separate patch. Regards, Clemens