diff options
author | Olof Johansson <olof@lixom.net> | 2020-01-16 19:45:42 +0100 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2020-01-16 19:45:44 +0100 |
commit | c7ce73eb018566222542adfb21f18961d0009286 (patch) | |
tree | 4fa522527a0c8c1e77613939ff661d50e77b2ce8 /drivers/bus | |
parent | Merge tag 'tegra-for-5.6-soc' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff) | |
parent | mailbox: armada-37xx-rwtm: convert to devm_platform_ioremap_resource (diff) | |
download | linux-c7ce73eb018566222542adfb21f18961d0009286.tar.xz linux-c7ce73eb018566222542adfb21f18961d0009286.zip |
Merge tag 'mvebu-drivers-5.6-1' of git://git.infradead.org/linux-mvebu into arm/drivers
mvebu drivers for 5.6 (part 1)
- Various cleanup on the following drivers:
- Turris Mox rWTM firmware
- Moxtet bus
- Armada 37xx rWTM mailbox
- Marvell EBU Device Bus
* tag 'mvebu-drivers-5.6-1' of git://git.infradead.org/linux-mvebu:
mailbox: armada-37xx-rwtm: convert to devm_platform_ioremap_resource
memory: mvebu-devbus: convert to devm_platform_ioremap_resource
bus: moxtet: declare moxtet_bus_type as static
firmware: turris-mox-rwtm: small white space cleanup
Link: https://lore.kernel.org/r/877e1x3nxc.fsf@FE-laptop
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/bus')
-rw-r--r-- | drivers/bus/moxtet.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/bus/moxtet.c b/drivers/bus/moxtet.c index 36cf13eee6b8..15fa293819a0 100644 --- a/drivers/bus/moxtet.c +++ b/drivers/bus/moxtet.c @@ -102,12 +102,11 @@ static int moxtet_match(struct device *dev, struct device_driver *drv) return 0; } -struct bus_type moxtet_bus_type = { +static struct bus_type moxtet_bus_type = { .name = "moxtet", .dev_groups = moxtet_dev_groups, .match = moxtet_match, }; -EXPORT_SYMBOL_GPL(moxtet_bus_type); int __moxtet_register_driver(struct module *owner, struct moxtet_driver *mdrv) |