From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756101AbaIWOJM (ORCPT ); Tue, 23 Sep 2014 10:09:12 -0400 Received: from cantor2.suse.de ([195.135.220.15]:39124 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752126AbaIWOJJ (ORCPT ); Tue, 23 Sep 2014 10:09:09 -0400 Date: Tue, 23 Sep 2014 16:09:08 +0200 Message-ID: From: Takashi Iwai To: Sudip Mukherjee Cc: Jaroslav Kysela , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 2/5] ALSA: ctxfi: initialized snd_card In-Reply-To: <1411470024-25244-2-git-send-email-sudipm.mukherjee@gmail.com> References: <1411470024-25244-1-git-send-email-sudipm.mukherjee@gmail.com> <1411470024-25244-2-git-send-email-sudipm.mukherjee@gmail.com> User-Agent: Wanderlust/2.15.9 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.8 Emacs/24.3 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org At Tue, 23 Sep 2014 16:30:21 +0530, Sudip Mukherjee wrote: > > initialized the reference of snd_card which was added to the various > structures through the previous patch of the series. > these references of snd_card will be used in a later patch to convert > the pr_* macros to dev_* > > Signed-off-by: Sudip Mukherjee > --- > sound/pci/ctxfi/ctamixer.c | 2 ++ > sound/pci/ctxfi/ctatc.c | 1 + > sound/pci/ctxfi/ctdaio.c | 1 + > sound/pci/ctxfi/ctsrc.c | 2 ++ > 4 files changed, 6 insertions(+) > > diff --git a/sound/pci/ctxfi/ctamixer.c b/sound/pci/ctxfi/ctamixer.c > index fed6e6a..dc89fad 100644 > --- a/sound/pci/ctxfi/ctamixer.c > +++ b/sound/pci/ctxfi/ctamixer.c > @@ -314,6 +314,7 @@ int amixer_mgr_create(void *hw, struct amixer_mgr **ramixer_mgr) > > amixer_mgr->get_amixer = get_amixer_rsc; > amixer_mgr->put_amixer = put_amixer_rsc; > + amixer_mgr->card = ((struct hw *)hw)->card; Overall the patches became obviously better now, but unfortunately we still see such rather stupid cast occasionally. I guess you considered reducing these? Then start thinking from the scratch: why the cast is needed at all? It's because the driver uses the void pointer for hw objects. Why? The driver author tried to separate the code abstraction, and thought to pass the arbitrary hw object. Such abstraction would be good if really different objects are handled. OTOH, in ctxfi case, we know that we deal with only a single hw type. So, using void * for hw object is rather error-prone, and the code safety can be even improved by strict typing. That said, replacing void * with struct hw * or such would make things not only easier but also safer. BTW, the patch 5 is basically independent from the rest, and it's good enough, so I applied it now. At the next respin, please drop that patch from your series. thanks, Takashi