forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'i2c-host-fixes-6.8-rc5' of git://git.kernel.org/pub/scm/li…
…nux/kernel/git/andi.shyti/linux into i2c/for-current Three fixes are included here. Two are strictly hardware-related for the i801 and qcom-geni devices. Meanwhile, a fix from Arnd addresses a compilation error encountered during compile test on powerpc.
- Loading branch information
Showing
4 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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 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 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 |
---|---|---|
|
@@ -369,6 +369,7 @@ int pasemi_i2c_common_probe(struct pasemi_smbus *smbus) | |
|
||
return 0; | ||
} | ||
EXPORT_SYMBOL_GPL(pasemi_i2c_common_probe); | ||
|
||
irqreturn_t pasemi_irq_handler(int irq, void *dev_id) | ||
{ | ||
|
@@ -378,3 +379,8 @@ irqreturn_t pasemi_irq_handler(int irq, void *dev_id) | |
complete(&smbus->irq_completion); | ||
return IRQ_HANDLED; | ||
} | ||
EXPORT_SYMBOL_GPL(pasemi_irq_handler); | ||
|
||
MODULE_LICENSE("GPL"); | ||
MODULE_AUTHOR("Olof Johansson <[email protected]>"); | ||
MODULE_DESCRIPTION("PA Semi PWRficient SMBus driver"); |
This file contains 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