Skip to content

Commit

Permalink
ALSA: sound/atmel/ac97c.c: remove unused variable
Browse files Browse the repository at this point in the history
The recently added DT support for the ac97 driver is causing
a gcc warning:

sound/atmel/ac97c.c: In function 'atmel_ac97c_probe_dt':
sound/atmel/ac97c.c:919:29: warning: unused variable 'match' [-Wunused-variable]
  const struct of_device_id *match;

The variable is clearly unused, so we can remove it.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Alexander Stein <alexanders83@web.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
arndb authored and tiwai committed May 20, 2015
1 parent fa94b0d commit 976fa9a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion sound/atmel/ac97c.c
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,6 @@ static struct ac97c_platform_data *atmel_ac97c_probe_dt(struct device *dev)
{
struct ac97c_platform_data *pdata;
struct device_node *node = dev->of_node;
const struct of_device_id *match;

if (!node) {
dev_err(dev, "Device does not have associated DT data\n");
Expand Down

0 comments on commit 976fa9a

Please sign in to comment.