File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1454,8 +1454,8 @@ static int wm8753_probe(struct snd_soc_codec *codec)
1454
1454
/* set the update bits */
1455
1455
snd_soc_update_bits (codec , WM8753_LDAC , 0x0100 , 0x0100 );
1456
1456
snd_soc_update_bits (codec , WM8753_RDAC , 0x0100 , 0x0100 );
1457
- snd_soc_update_bits (codec , WM8753_LDAC , 0x0100 , 0x0100 );
1458
- snd_soc_update_bits (codec , WM8753_RDAC , 0x0100 , 0x0100 );
1457
+ snd_soc_update_bits (codec , WM8753_LADC , 0x0100 , 0x0100 );
1458
+ snd_soc_update_bits (codec , WM8753_RADC , 0x0100 , 0x0100 );
1459
1459
snd_soc_update_bits (codec , WM8753_LOUT1V , 0x0100 , 0x0100 );
1460
1460
snd_soc_update_bits (codec , WM8753_ROUT1V , 0x0100 , 0x0100 );
1461
1461
snd_soc_update_bits (codec , WM8753_LOUT2V , 0x0100 , 0x0100 );
Original file line number Diff line number Diff line change @@ -449,7 +449,7 @@ int __devinit omap_mcpdm_probe(struct platform_device *pdev)
449
449
return ret ;
450
450
}
451
451
452
- int __devexit omap_mcpdm_remove (struct platform_device * pdev )
452
+ int omap_mcpdm_remove (struct platform_device * pdev )
453
453
{
454
454
struct omap_mcpdm * mcpdm_ptr = platform_get_drvdata (pdev );
455
455
Original file line number Diff line number Diff line change @@ -150,4 +150,4 @@ extern int omap_mcpdm_request(void);
150
150
extern void omap_mcpdm_free (void );
151
151
extern int omap_mcpdm_set_offset (int offset1 , int offset2 );
152
152
int __devinit omap_mcpdm_probe (struct platform_device * pdev );
153
- int __devexit omap_mcpdm_remove (struct platform_device * pdev );
153
+ int omap_mcpdm_remove (struct platform_device * pdev );
Original file line number Diff line number Diff line change @@ -196,20 +196,20 @@ static int zylonite_probe(struct snd_soc_card *card)
196
196
if (clk_pout ) {
197
197
pout = clk_get (NULL , "CLK_POUT" );
198
198
if (IS_ERR (pout )) {
199
- dev_err (& pdev -> dev , "Unable to obtain CLK_POUT: %ld\n" ,
199
+ dev_err (card -> dev , "Unable to obtain CLK_POUT: %ld\n" ,
200
200
PTR_ERR (pout ));
201
201
return PTR_ERR (pout );
202
202
}
203
203
204
204
ret = clk_enable (pout );
205
205
if (ret != 0 ) {
206
- dev_err (& pdev -> dev , "Unable to enable CLK_POUT: %d\n" ,
206
+ dev_err (card -> dev , "Unable to enable CLK_POUT: %d\n" ,
207
207
ret );
208
208
clk_put (pout );
209
209
return ret ;
210
210
}
211
211
212
- dev_dbg (& pdev -> dev , "MCLK enabled at %luHz\n" ,
212
+ dev_dbg (card -> dev , "MCLK enabled at %luHz\n" ,
213
213
clk_get_rate (pout ));
214
214
}
215
215
@@ -241,7 +241,7 @@ static int zylonite_resume_pre(struct snd_soc_card *card)
241
241
if (clk_pout ) {
242
242
ret = clk_enable (pout );
243
243
if (ret != 0 )
244
- dev_err (& pdev -> dev , "Unable to enable CLK_POUT: %d\n" ,
244
+ dev_err (card -> dev , "Unable to enable CLK_POUT: %d\n" ,
245
245
ret );
246
246
}
247
247
You can’t perform that action at this time.
0 commit comments