diff options
author | Angelo Dureghello | 2021-07-02 11:48:38 +0200 |
---|---|---|
committer | Greg Ungerer | 2021-08-23 08:40:04 +1000 |
commit | 40cff49289d5eab6c1db7792ae043e5b04903dd6 (patch) | |
tree | 5a4de111910a4bef34707591319a5cffa6e4ad43 /arch/m68k/coldfire | |
parent | cd3bf8cfd6ae94c1af5c657aee35b730976cd1d1 (diff) |
m68k: stmark2: update board setup
Add configuration for flexcan pads.
Signed-off-by: Angelo Dureghello <angelo@kernel-space.org>
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Diffstat (limited to 'arch/m68k/coldfire')
-rw-r--r-- | arch/m68k/coldfire/stmark2.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/m68k/coldfire/stmark2.c b/arch/m68k/coldfire/stmark2.c index 8b5af9c83244..036a6ae5f599 100644 --- a/arch/m68k/coldfire/stmark2.c +++ b/arch/m68k/coldfire/stmark2.c @@ -111,7 +111,9 @@ static int __init init_stmark2(void) __raw_writeb(0x00, MCFGPIO_PAR_BE); __raw_writeb(0x00, MCFGPIO_PAR_FBCTL); __raw_writeb(0x00, MCFGPIO_PAR_CS); - __raw_writeb(0x00, MCFGPIO_PAR_CANI2C); + + /* CAN pads */ + __raw_writeb(0x50, MCFGPIO_PAR_CANI2C); platform_add_devices(stmark2_devices, ARRAY_SIZE(stmark2_devices)); @@ -121,4 +123,4 @@ static int __init init_stmark2(void) return 0; } -late_initcall(init_stmark2); +device_initcall(init_stmark2); |