Skip to content

Commit 71ad2b0

Browse files
committed
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/[email protected] Signed-off-by: Arnd Bergmann <[email protected]>
2 parents b8600cb + d8ee46b commit 71ad2b0

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

drivers/soc/ti/smartreflex.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ static int sr_late_init(struct omap_sr *sr_info)
202202

203203
if (sr_class->notify && sr_class->notify_flags && sr_info->irq) {
204204
ret = devm_request_irq(&sr_info->pdev->dev, sr_info->irq,
205-
sr_interrupt, 0, sr_info->name, sr_info);
205+
sr_interrupt, IRQF_NO_AUTOEN,
206+
sr_info->name, sr_info);
206207
if (ret)
207208
goto error;
208-
disable_irq(sr_info->irq);
209209
}
210210

211211
return ret;

drivers/thermal/ti-soc-thermal/dra752-bandgap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
/**
7575
* Register bitfields for DRA752
7676
*
77-
* All the macros bellow define the required bits for
77+
* All the macros below define the required bits for
7878
* controlling temperature on DRA752. Bit defines are
7979
* grouped by register.
8080
*/
@@ -125,7 +125,7 @@
125125
/**
126126
* Temperature limits and thresholds for DRA752
127127
*
128-
* All the macros bellow are definitions for handling the
128+
* All the macros below are definitions for handling the
129129
* ADC conversions and representation of temperature limits
130130
* and thresholds for DRA752. Definitions are grouped
131131
* by temperature domain.

drivers/thermal/ti-soc-thermal/omap4xxx-bandgap.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
/**
3333
* Register and bit definitions for OMAP4430
3434
*
35-
* All the macros bellow define the required bits for
35+
* All the macros below define the required bits for
3636
* controlling temperature on OMAP4430. Bit defines are
3737
* grouped by register.
3838
*/
@@ -48,7 +48,7 @@
4848
/**
4949
* Temperature limits and thresholds for OMAP4430
5050
*
51-
* All the macros bellow are definitions for handling the
51+
* All the macros below are definitions for handling the
5252
* ADC conversions and representation of temperature limits
5353
* and thresholds for OMAP4430.
5454
*/
@@ -102,7 +102,7 @@
102102
/**
103103
* Register bitfields for OMAP4460
104104
*
105-
* All the macros bellow define the required bits for
105+
* All the macros below define the required bits for
106106
* controlling temperature on OMAP4460. Bit defines are
107107
* grouped by register.
108108
*/
@@ -135,7 +135,7 @@
135135
/**
136136
* Temperature limits and thresholds for OMAP4460
137137
*
138-
* All the macros bellow are definitions for handling the
138+
* All the macros below are definitions for handling the
139139
* ADC conversions and representation of temperature limits
140140
* and thresholds for OMAP4460.
141141
*/

drivers/thermal/ti-soc-thermal/omap5xxx-bandgap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
/**
5757
* Register bitfields for OMAP5430
5858
*
59-
* All the macros bellow define the required bits for
59+
* All the macros below define the required bits for
6060
* controlling temperature on OMAP5430. Bit defines are
6161
* grouped by register.
6262
*/
@@ -101,7 +101,7 @@
101101
/**
102102
* Temperature limits and thresholds for OMAP5430
103103
*
104-
* All the macros bellow are definitions for handling the
104+
* All the macros below are definitions for handling the
105105
* ADC conversions and representation of temperature limits
106106
* and thresholds for OMAP5430. Definitions are grouped
107107
* by temperature domain.

0 commit comments

Comments
 (0)