Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363182
b: refs/heads/master
c: e56a0a5
h: refs/heads/master
v: v3
  • Loading branch information
Mark Brown committed Apr 2, 2013
1 parent 2899a15 commit 6bc8b88
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 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: 77ff4f95d77ddb14fe827e70d8b4be4a692790e9
refs/heads/master: e56a0a572be150c79cdbf62ff98f4a63419e1c0b
9 changes: 7 additions & 2 deletions trunk/drivers/extcon/extcon-arizona.c
Original file line number Diff line number Diff line change
Expand Up @@ -986,6 +986,7 @@ static int arizona_extcon_probe(struct platform_device *pdev)
struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
struct arizona_pdata *pdata;
struct arizona_extcon_info *info;
unsigned int val;
int jack_irq_fall, jack_irq_rise;
int ret, mode, i, j;

Expand Down Expand Up @@ -1172,9 +1173,13 @@ static int arizona_extcon_probe(struct platform_device *pdev)
*/
if (info->micd_clamp) {
if (arizona->pdata.jd_gpio5) {
/* Put the GPIO into input mode */
/* Put the GPIO into input mode with optional pull */
val = 0xc101;
if (arizona->pdata.jd_gpio5_nopull)
val &= ~ARIZONA_GPN_PU;

regmap_write(arizona->regmap, ARIZONA_GPIO5_CTRL,
0xc101);
val);

regmap_update_bits(arizona->regmap,
ARIZONA_MICD_CLAMP_CONTROL,
Expand Down
3 changes: 3 additions & 0 deletions trunk/include/linux/mfd/arizona/pdata.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ struct arizona_pdata {
/** GPIO5 is used for jack detection */
bool jd_gpio5;

/** Internal pull on GPIO5 is disabled when used for jack detection */
bool jd_gpio5_nopull;

/** Use the headphone detect circuit to identify the accessory */
bool hpdet_acc_id;

Expand Down

0 comments on commit 6bc8b88

Please sign in to comment.