mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
Fixes include:
. spelling in comment . compilation when flexcan driver enabled . sparse warning -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEmsfM6tQwfNjBOxr3TiQVqaG9L4AFAmLxqB8ACgkQTiQVqaG9 L4B1Ew/+M4gvFubfL4HfPLGQsMhjhH6lQGQbvPF4oWt4HFMQiFpgyoaTShDYLVBw sOfdXKGsJ/kt8F9BF/hsJfOdGm6nWqR3XiFY+k4ZXA7BZOREsbHE6Lfag8zeiQAH ENfA3XRa88azH/q9eMfU2n4wgKHFuYKqA5+8Lgaqt1Nbg5MqiW7elv5JFeImP/h5 TV0gzvbbSt/0Ho29R+IyEVJPuxrxJQM6R5VdqwiIdCgbFvcXQ/Spw7VgjTWVDXDn BjpfXllzmLD9+gPLCc/u0RXDKASzAERrVq0OwIrYsZS/Yr3eiYlqXLLJqA2F4pSB k47Fhuut8M4Y9XE4swklV3mmEbE7GU1qLwtFZadMe/oUfM5P4N3+6F5tqFoeyPLu p+WCBYzOCP362yOoaeEtCxd7pei38KfZ4W03ILfIW7DJV22ZGYJsD/OCbQkd83Qu TAxR8zUXshpoaVC7pAlcx3ZD/L2QScG4krWeQXgLjDX2MaokJ9Hsw8qwZ0Vqens2 1wiVDGTOXo+/Ny4IcTIzwjcajGFziXq4WA9ZWVOiswjlQdzNvvyZe440fNSlwYMe 4kq/EGmOG9/3RHXyidSBKwsnzee+xgPHchf7v0gFkUh0Eua8jDn8DfBlUqz1U83V 95ennxsUUF9m1oUXwKkosEGIuxlDRouH0PK1kZRIS+DhWrSvMms= =2gLI -----END PGP SIGNATURE----- Merge tag 'm68knommu-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu Pull m68knommu fixes from Greg Ungerer: - spelling in comment - compilation when flexcan driver enabled - sparse warning * tag 'm68knommu-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu: m68k: Fix syntax errors in comments m68k: coldfire: make symbol m523x_clk_lookup static m68k: coldfire/device.c: protect FLEXCAN blocks
This commit is contained in:
commit
15886321a4
@ -581,7 +581,7 @@ static struct platform_device mcf_esdhc = {
|
||||
};
|
||||
#endif /* MCFSDHC_BASE */
|
||||
|
||||
#if IS_ENABLED(CONFIG_CAN_FLEXCAN)
|
||||
#ifdef MCFFLEXCAN_SIZE
|
||||
|
||||
#include <linux/can/platform/flexcan.h>
|
||||
|
||||
@ -620,7 +620,7 @@ static struct platform_device mcf_flexcan0 = {
|
||||
.resource = mcf5441x_flexcan0_resource,
|
||||
.dev.platform_data = &mcf5441x_flexcan_info,
|
||||
};
|
||||
#endif /* IS_ENABLED(CONFIG_CAN_FLEXCAN) */
|
||||
#endif /* MCFFLEXCAN_SIZE */
|
||||
|
||||
static struct platform_device *mcf_devices[] __initdata = {
|
||||
&mcf_uart,
|
||||
@ -657,7 +657,7 @@ static struct platform_device *mcf_devices[] __initdata = {
|
||||
#ifdef MCFSDHC_BASE
|
||||
&mcf_esdhc,
|
||||
#endif
|
||||
#if IS_ENABLED(CONFIG_CAN_FLEXCAN)
|
||||
#ifdef MCFFLEXCAN_SIZE
|
||||
&mcf_flexcan0,
|
||||
#endif
|
||||
};
|
||||
|
@ -7,7 +7,7 @@
|
||||
* family, the 5270, 5271, 5274, 5275, and the 528x family which have two such
|
||||
* controllers, and the 547x and 548x families which have only one of them.
|
||||
*
|
||||
* The external 7 fixed interrupts are part the the Edge Port unit of these
|
||||
* The external 7 fixed interrupts are part of the Edge Port unit of these
|
||||
* ColdFire parts. They can be configured as level or edge triggered.
|
||||
*
|
||||
* (C) Copyright 2009-2011, Greg Ungerer <gerg@snapgear.com>
|
||||
|
@ -28,7 +28,7 @@
|
||||
DEFINE_CLK(pll, "pll.0", MCF_CLK);
|
||||
DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
|
||||
|
||||
struct clk_lookup m523x_clk_lookup[] = {
|
||||
static struct clk_lookup m523x_clk_lookup[] = {
|
||||
CLKDEV_INIT(NULL, "pll.0", &clk_pll),
|
||||
CLKDEV_INIT(NULL, "sys.0", &clk_sys),
|
||||
CLKDEV_INIT("mcfpit.0", NULL, &clk_pll),
|
||||
|
Loading…
Reference in New Issue
Block a user