Skip to content

Commit 92607f8

Browse files
committed
Merge tag 'davinci-for-v5.9/soc' of git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci into arm/soc
DaVinci SoC updates for v5.9 This pull requests contains some clean-ups for SoC support. No functional changes included. * tag 'davinci-for-v5.9/soc' of git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci: ARM: davinci: dm646x-evm: Simplify error handling in 'evm_sw_setup()' ARM: davinci: Fix trivial spelling ARM: davinci: Replace HTTP links with HTTPS ones Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnd Bergmann <[email protected]>
2 parents 5644f69 + 951e395 commit 92607f8

File tree

15 files changed

+18
-25
lines changed

15 files changed

+18
-25
lines changed

arch/arm/boot/dts/da850-evm.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Device Tree for DA850 EVM board
44
*
5-
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
5+
* Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
66
*/
77
/dts-v1/;
88
#include "da850.dtsi"

arch/arm/mach-davinci/Kconfig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,15 +201,13 @@ config MACH_MITYOMAPL138
201201
help
202202
Say Y here to select the Critical Link MityDSP-L138/MityARM-1808
203203
System on Module. Information on this SoM may be found at
204-
http://www.mitydsp.com
204+
https://www.mitydsp.com
205205

206206
config MACH_OMAPL138_HAWKBOARD
207207
bool "TI AM1808 / OMAPL-138 Hawkboard platform"
208208
depends on ARCH_DAVINCI_DA850
209209
help
210210
Say Y here to select the TI AM1808 / OMAPL-138 Hawkboard platform .
211-
Information of this board may be found at
212-
http://www.hawkboard.org/
213211

214212
config DAVINCI_MUX
215213
bool "DAVINCI multiplexing support"

arch/arm/mach-davinci/board-da830-evm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ static struct mtd_partition da830_evm_nand_partitions[] = {
266266
}
267267
};
268268

269-
/* flash bbt decriptors */
269+
/* flash bbt descriptors */
270270
static uint8_t da830_evm_nand_bbt_pattern[] = { 'B', 'b', 't', '0' };
271271
static uint8_t da830_evm_nand_mirror_pattern[] = { '1', 't', 'b', 'B' };
272272

arch/arm/mach-davinci/board-da850-evm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* TI DA850/OMAP-L138 EVM board
33
*
4-
* Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
4+
* Copyright (C) 2009 Texas Instruments Incorporated - https://www.ti.com/
55
*
66
* Derived from: arch/arm/mach-davinci/board-da830-evm.c
77
* Original Copyrights follow:

arch/arm/mach-davinci/board-dm646x-evm.c

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -267,20 +267,15 @@ static int evm_sw_setup(struct i2c_client *client, int gpio,
267267
evm_sw_gpio[i] = gpio++;
268268

269269
status = gpio_direction_input(evm_sw_gpio[i]);
270-
if (status) {
271-
gpio_free(evm_sw_gpio[i]);
272-
evm_sw_gpio[i] = -EINVAL;
270+
if (status)
273271
goto out_free;
274-
}
275272

276273
status = gpio_export(evm_sw_gpio[i], 0);
277-
if (status) {
278-
gpio_free(evm_sw_gpio[i]);
279-
evm_sw_gpio[i] = -EINVAL;
274+
if (status)
280275
goto out_free;
281-
}
282276
}
283-
return status;
277+
return 0;
278+
284279
out_free:
285280
for (i = 0; i < 4; ++i) {
286281
if (evm_sw_gpio[i] != -EINVAL) {

arch/arm/mach-davinci/board-mityomapl138.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Critical Link MityOMAP-L138 SoM
33
*
4-
* Copyright (C) 2010 Critical Link LLC - http://www.criticallink.com
4+
* Copyright (C) 2010 Critical Link LLC - https://www.criticallink.com
55
*
66
* This file is licensed under the terms of the GNU General Public License
77
* version 2. This program is licensed "as is" without any warranty of

arch/arm/mach-davinci/board-neuros-osd2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ static __init void davinci_ntosd2_init(void)
214214
* Mux the pins to be GPIOs, VLYNQEN is already done at startup.
215215
* The AEAWx are five new AEAW pins that can be muxed by separately.
216216
* They are a bitmask for GPIO management. According TI
217-
* documentation (http://www.ti.com/lit/gpn/tms320dm6446) to employ
217+
* documentation (https://www.ti.com/lit/gpn/tms320dm6446) to employ
218218
* gpio(10,11,12,13) for leds any combination of bits works except
219219
* four last. So we are to reset all five.
220220
*/

arch/arm/mach-davinci/board-omapl138-hawk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Initial code: Syed Mohammed Khasim
55
*
6-
* Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com
6+
* Copyright (C) 2009 Texas Instruments Incorporated - https://www.ti.com
77
*
88
* This file is licensed under the terms of the GNU General Public License
99
* version 2. This program is licensed "as is" without any warranty of

arch/arm/mach-davinci/cpuidle.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* CPU idle for DaVinci SoCs
44
*
5-
* Copyright (C) 2009 Texas Instruments Incorporated. http://www.ti.com/
5+
* Copyright (C) 2009 Texas Instruments Incorporated. https://www.ti.com/
66
*
77
* Derived from Marvell Kirkwood CPU idle code
88
* (arch/arm/mach-kirkwood/cpuidle.c)

arch/arm/mach-davinci/cpuidle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* TI DaVinci cpuidle platform support
33
*
4-
* 2009 (C) Texas Instruments, Inc. http://www.ti.com/
4+
* 2009 (C) Texas Instruments, Inc. https://www.ti.com/
55
*
66
* This file is licensed under the terms of the GNU General Public License
77
* version 2. This program is licensed "as is" without any warranty of any

0 commit comments

Comments
 (0)