From: Geliang Tang <geliangtang@163.com>
To: Vinod Koul <vinod.koul@intel.com>
Cc: Geliang Tang <geliangtang@163.com>,
linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org,
Takashi Iwai <tiwai@suse.com>
Subject: Re: [PATCH 2/4] ALSA: hdac: drop unused dev_to_hdac macro
Date: Mon, 4 Jan 2016 22:54:22 +0800 [thread overview]
Message-ID: <20160104145421.GA16267@bogon> (raw)
In-Reply-To: <20160104082347.GG2940@localhost>
On Mon, Jan 04, 2016 at 01:53:47PM +0530, Vinod Koul wrote:
> On Mon, Dec 28, 2015 at 10:47:11PM +0800, Geliang Tang wrote:
> > dev_to_hdac is not used anymore so drop it.
>
> No harm in keeping this for now as the systems using these will be coming
> up and more users will be upstreamed...
>
Thanks for your review. Sorry that I didn't make myself clear in the commit
log. What I droped is a repetitive macro. dev_to_hdac() in hdac_ext_bus.c
and dev_to_hdac_dev() in hdaudio.h are the same:
include/sound/hdaudio.h:
#define dev_to_hdac_dev(_dev) container_of(_dev, struct hdac_device, dev)
sound/hda/ext/hdac_ext_bus.c:
#define dev_to_hdac(dev) (container_of((dev), \
struct hdac_device, dev))
Users should use dev_to_hdac_dev() in hdaudio.h, not dev_to_hdac().
-Geliang
> >
> > Signed-off-by: Geliang Tang <geliangtang@163.com>
> > ---
> > sound/hda/ext/hdac_ext_bus.c | 2 --
> > 1 file changed, 2 deletions(-)
> >
> > diff --git a/sound/hda/ext/hdac_ext_bus.c b/sound/hda/ext/hdac_ext_bus.c
> > index 2433f7c..58f6b98 100644
> > --- a/sound/hda/ext/hdac_ext_bus.c
> > +++ b/sound/hda/ext/hdac_ext_bus.c
> > @@ -197,8 +197,6 @@ void snd_hdac_ext_bus_device_remove(struct hdac_ext_bus *ebus)
> > }
> > }
> > EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_device_remove);
> > -#define dev_to_hdac(dev) (container_of((dev), \
> > - struct hdac_device, dev))
> >
> > static inline struct hdac_ext_driver *get_edrv(struct device *dev)
> > {
> > --
> > 2.5.0
WARNING: multiple messages have this Message-ID (diff)
From: Geliang Tang <geliangtang@163.com>
To: Vinod Koul <vinod.koul@intel.com>
Cc: Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
Geliang Tang <geliangtang@163.com>
Subject: Re: [PATCH 2/4] ALSA: hdac: drop unused dev_to_hdac macro
Date: Mon, 4 Jan 2016 22:54:22 +0800 [thread overview]
Message-ID: <20160104145421.GA16267@bogon> (raw)
In-Reply-To: <20160104082347.GG2940@localhost>
On Mon, Jan 04, 2016 at 01:53:47PM +0530, Vinod Koul wrote:
> On Mon, Dec 28, 2015 at 10:47:11PM +0800, Geliang Tang wrote:
> > dev_to_hdac is not used anymore so drop it.
>
> No harm in keeping this for now as the systems using these will be coming
> up and more users will be upstreamed...
>
Thanks for your review. Sorry that I didn't make myself clear in the commit
log. What I droped is a repetitive macro. dev_to_hdac() in hdac_ext_bus.c
and dev_to_hdac_dev() in hdaudio.h are the same:
include/sound/hdaudio.h:
#define dev_to_hdac_dev(_dev) container_of(_dev, struct hdac_device, dev)
sound/hda/ext/hdac_ext_bus.c:
#define dev_to_hdac(dev) (container_of((dev), \
struct hdac_device, dev))
Users should use dev_to_hdac_dev() in hdaudio.h, not dev_to_hdac().
-Geliang
> >
> > Signed-off-by: Geliang Tang <geliangtang@163.com>
> > ---
> > sound/hda/ext/hdac_ext_bus.c | 2 --
> > 1 file changed, 2 deletions(-)
> >
> > diff --git a/sound/hda/ext/hdac_ext_bus.c b/sound/hda/ext/hdac_ext_bus.c
> > index 2433f7c..58f6b98 100644
> > --- a/sound/hda/ext/hdac_ext_bus.c
> > +++ b/sound/hda/ext/hdac_ext_bus.c
> > @@ -197,8 +197,6 @@ void snd_hdac_ext_bus_device_remove(struct hdac_ext_bus *ebus)
> > }
> > }
> > EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_device_remove);
> > -#define dev_to_hdac(dev) (container_of((dev), \
> > - struct hdac_device, dev))
> >
> > static inline struct hdac_ext_driver *get_edrv(struct device *dev)
> > {
> > --
> > 2.5.0
next prev parent reply other threads:[~2016-01-04 14:54 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-28 14:47 [PATCH 1/4] ALSA: core: use dev_to_snd_card Geliang Tang
2015-12-28 14:47 ` [PATCH 2/4] ALSA: hdac: drop unused dev_to_hdac macro Geliang Tang
2016-01-04 8:23 ` Vinod Koul
2016-01-04 14:54 ` Geliang Tang [this message]
2016-01-04 14:54 ` Geliang Tang
2015-12-28 14:47 ` [PATCH 3/4] ALSA: hdac: use dev_to_hdac_dev Geliang Tang
2016-01-04 8:21 ` Vinod Koul
2015-12-28 14:47 ` [PATCH 4/4] ASoC: hdac_hdmi: use dev_to_hdac_dev and to_ehdac_device Geliang Tang
2016-01-04 8:22 ` Vinod Koul
2016-01-04 22:18 ` Applied "ASoC: hdac_hdmi: use dev_to_hdac_dev and to_ehdac_device" to the asoc tree Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160104145421.GA16267@bogon \
--to=geliangtang@163.com \
--cc=alsa-devel@alsa-project.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tiwai@suse.com \
--cc=vinod.koul@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.