Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 285875
b: refs/heads/master
c: e37051d
h: refs/heads/master
i:
  285873: 39cc793
  285871: 21a39b1
v: v3
  • Loading branch information
Axel Lin authored and Russell King committed Jan 13, 2012
1 parent 51b6acc commit 8d0e94b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 28f9a9294a37ddbc1d821782afc8754eed4bce4e
refs/heads/master: e37051dc7f35de5ce3f64c40852365ff24f2436c
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-w90x900/clksel.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static void clock_source_select(const char *dev_id, unsigned int clkval)
offset = ATAOFFSET;
else if (strcmp(dev_id, "nuc900-lcd") == 0)
offset = LCDOFFSET;
else if (strcmp(dev_id, "nuc900-audio") == 0)
else if (strcmp(dev_id, "nuc900-ac97") == 0)
offset = AUDOFFSET;
else
offset = CPUOFFSET;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-w90x900/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static DEFINE_CLK(timer4, 23);

static struct clk_lookup nuc900_clkregs[] = {
DEF_CLKLOOK(&clk_lcd, "nuc900-lcd", NULL),
DEF_CLKLOOK(&clk_audio, "nuc900-audio", NULL),
DEF_CLKLOOK(&clk_audio, "nuc900-ac97", NULL),
DEF_CLKLOOK(&clk_fmi, "nuc900-fmi", NULL),
DEF_CLKLOOK(&clk_ms, "nuc900-fmi", "MS"),
DEF_CLKLOOK(&clk_sd, "nuc900-fmi", "SD"),
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/arm/mach-w90x900/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,8 +501,8 @@ static struct resource nuc900_ac97_resource[] = {

};

struct platform_device nuc900_device_audio = {
.name = "nuc900-audio",
struct platform_device nuc900_device_ac97 = {
.name = "nuc900-ac97",
.id = -1,
.num_resources = ARRAY_SIZE(nuc900_ac97_resource),
.resource = nuc900_ac97_resource,
Expand All @@ -523,7 +523,7 @@ static struct platform_device *nuc900_public_dev[] __initdata = {
&nuc900_device_emc,
&nuc900_device_spi,
&nuc900_device_wdt,
&nuc900_device_audio,
&nuc900_device_ac97,
};

/* Provide adding specific CPU platform devices API */
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-w90x900/mfp.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ void mfp_set_groupg(struct device *dev, const char *subname)
} else if (strcmp(dev_id, "nuc900-i2c1") == 0) {
mfpen &= ~(GPIOG2TO3);
mfpen |= ENI2C1;/*enable i2c1*/
} else if (strcmp(dev_id, "nuc900-audio") == 0) {
} else if (strcmp(dev_id, "nuc900-ac97") == 0) {
mfpen &= ~(GPIOG22TO23);
mfpen |= ENAC97;/*enable AC97*/
} else if (strcmp(dev_id, "nuc900-mmc-port1") == 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/sound/soc/nuc900/nuc900-ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ static int __devinit nuc900_ac97_drvprobe(struct platform_device *pdev)
goto out3;

/* enbale ac97 multifunction pin */
mfp_set_groupg(nuc900_audio->dev, "nuc900-audio");
mfp_set_groupg(nuc900_audio->dev, NULL);

return 0;

Expand Down

0 comments on commit 8d0e94b

Please sign in to comment.