mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 12:21:22 -05:00
Merge tag 'omap-for-v6.13/drivers-signed' of https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap into arm/drivers
soc: ti: driver updates for v6.13 * tag 'omap-for-v6.13/drivers-signed' of https://git.kernel.org/pub/scm/linux/kernel/git/khilman/linux-omap: thermal/ti-soc-thermal: Fix typos soc: ti: smartreflex: Use IRQF_NO_AUTOEN flag in request_irq() Link: https://lore.kernel.org/r/7hplnaomtt.fsf@baylibre.com Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
@@ -202,10 +202,10 @@ static int sr_late_init(struct omap_sr *sr_info)
|
||||
|
||||
if (sr_class->notify && sr_class->notify_flags && sr_info->irq) {
|
||||
ret = devm_request_irq(&sr_info->pdev->dev, sr_info->irq,
|
||||
sr_interrupt, 0, sr_info->name, sr_info);
|
||||
sr_interrupt, IRQF_NO_AUTOEN,
|
||||
sr_info->name, sr_info);
|
||||
if (ret)
|
||||
goto error;
|
||||
disable_irq(sr_info->irq);
|
||||
}
|
||||
|
||||
return ret;
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
/**
|
||||
* Register bitfields for DRA752
|
||||
*
|
||||
* All the macros bellow define the required bits for
|
||||
* All the macros below define the required bits for
|
||||
* controlling temperature on DRA752. Bit defines are
|
||||
* grouped by register.
|
||||
*/
|
||||
@@ -125,7 +125,7 @@
|
||||
/**
|
||||
* Temperature limits and thresholds for DRA752
|
||||
*
|
||||
* All the macros bellow are definitions for handling the
|
||||
* All the macros below are definitions for handling the
|
||||
* ADC conversions and representation of temperature limits
|
||||
* and thresholds for DRA752. Definitions are grouped
|
||||
* by temperature domain.
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
/**
|
||||
* Register and bit definitions for OMAP4430
|
||||
*
|
||||
* All the macros bellow define the required bits for
|
||||
* All the macros below define the required bits for
|
||||
* controlling temperature on OMAP4430. Bit defines are
|
||||
* grouped by register.
|
||||
*/
|
||||
@@ -48,7 +48,7 @@
|
||||
/**
|
||||
* Temperature limits and thresholds for OMAP4430
|
||||
*
|
||||
* All the macros bellow are definitions for handling the
|
||||
* All the macros below are definitions for handling the
|
||||
* ADC conversions and representation of temperature limits
|
||||
* and thresholds for OMAP4430.
|
||||
*/
|
||||
@@ -102,7 +102,7 @@
|
||||
/**
|
||||
* Register bitfields for OMAP4460
|
||||
*
|
||||
* All the macros bellow define the required bits for
|
||||
* All the macros below define the required bits for
|
||||
* controlling temperature on OMAP4460. Bit defines are
|
||||
* grouped by register.
|
||||
*/
|
||||
@@ -135,7 +135,7 @@
|
||||
/**
|
||||
* Temperature limits and thresholds for OMAP4460
|
||||
*
|
||||
* All the macros bellow are definitions for handling the
|
||||
* All the macros below are definitions for handling the
|
||||
* ADC conversions and representation of temperature limits
|
||||
* and thresholds for OMAP4460.
|
||||
*/
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
/**
|
||||
* Register bitfields for OMAP5430
|
||||
*
|
||||
* All the macros bellow define the required bits for
|
||||
* All the macros below define the required bits for
|
||||
* controlling temperature on OMAP5430. Bit defines are
|
||||
* grouped by register.
|
||||
*/
|
||||
@@ -101,7 +101,7 @@
|
||||
/**
|
||||
* Temperature limits and thresholds for OMAP5430
|
||||
*
|
||||
* All the macros bellow are definitions for handling the
|
||||
* All the macros below are definitions for handling the
|
||||
* ADC conversions and representation of temperature limits
|
||||
* and thresholds for OMAP5430. Definitions are grouped
|
||||
* by temperature domain.
|
||||
|
||||
Reference in New Issue
Block a user