2008-02-29 00:18:39

by Harvey Harrison

[permalink] [raw]
Subject: [PATCH 3/3] sound: vmaster.c missing include of hda_local.h

Needed for the two prototypes, must include hda_codec.h as well
due to some dependencies between the headers.
sound/pci/hda/vmaster.c:230:5: warning: symbol 'snd_ctl_add_slave' was not declared. Should it be static?
sound/pci/hda/vmaster.c:329:21: warning: symbol 'snd_ctl_make_virtual_master' was not declared. Should it be static?

Signed-off-by: Harvey Harrison <[email protected]>
---
sound/pci/hda/vmaster.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/sound/pci/hda/vmaster.c b/sound/pci/hda/vmaster.c
index 2da49d2..26149b5 100644
--- a/sound/pci/hda/vmaster.c
+++ b/sound/pci/hda/vmaster.c
@@ -12,6 +12,8 @@
#include <linux/slab.h>
#include <sound/core.h>
#include <sound/control.h>
+#include "hda_codec.h"
+#include "hda_local.h"

/*
* a subset of information returned via ctl info callback
--
1.5.4.3.342.g99e8


2008-02-29 11:07:47

by Takashi Iwai

[permalink] [raw]
Subject: Re: [PATCH 3/3] sound: vmaster.c missing include of hda_local.h

At Thu, 28 Feb 2008 16:18:11 -0800,
Harvey Harrison wrote:
>
> Needed for the two prototypes, must include hda_codec.h as well
> due to some dependencies between the headers.
> sound/pci/hda/vmaster.c:230:5: warning: symbol 'snd_ctl_add_slave' was not declared. Should it be static?
> sound/pci/hda/vmaster.c:329:21: warning: symbol 'snd_ctl_make_virtual_master' was not declared. Should it be static?
>
> Signed-off-by: Harvey Harrison <[email protected]>

This isn't needed any more on the latest ALSA tree.


Takashi