-
Notifications
You must be signed in to change notification settings - Fork 52
Samsung i927 fixes #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c1652f1
mfd: max8907: Remove IRQF_NO_AUTOEN flag
cerg2010cerg2010 868e4b8
drm/tegra: Temporary pixel format fix for i927
cerg2010cerg2010 1e16a65
power: supply: max8903: OTG disable fix
cerg2010cerg2010 5b518f0
ASoC: tegra_wm8994: Fix codec name
cerg2010cerg2010 afd9811
ASoC: tegra_wm8994: Set mclk ID value
cerg2010cerg2010 bb79152
ARM: dts: tegra20-glide: Fix GPIO polarity for max8903
cerg2010cerg2010 81857cf
ARM: dts: tegra20-glide: Fix wm8994 codec config
cerg2010cerg2010 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -229,7 +229,7 @@ static int max8907_i2c_probe(struct i2c_client *i2c, | |
} | ||
|
||
ret = regmap_add_irq_chip(max8907->regmap_gen, max8907->i2c_gen->irq, | ||
IRQF_ONESHOT | IRQF_SHARED | IRQF_NO_AUTOEN, | ||
IRQF_ONESHOT | IRQF_SHARED, | ||
-1, &max8907_chg_irq_chip, | ||
&max8907->irqc_chg); | ||
if (ret != 0) { | ||
Comment on lines
229
to
235
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be good to send this patch to LKML right now since it fixes a generic bug. |
||
|
@@ -253,8 +253,6 @@ static int max8907_i2c_probe(struct i2c_client *i2c, | |
goto err_irqc_rtc; | ||
} | ||
|
||
enable_irq(max8907->i2c_gen->irq); | ||
|
||
ret = mfd_add_devices(max8907->dev, -1, max8907_cells, | ||
ARRAY_SIZE(max8907_cells), NULL, 0, NULL); | ||
if (ret != 0) { | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I overlooked that WM8994 used custom DAPM widgets when converted driver to use new unified machine framework. We can add back the customized widgets if you think that they are more appropriate.