Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6b47c82f authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mhi: Export more symbols"

parents 786200ca e7378399
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved. */
/* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved. */

#include <linux/debugfs.h>
#include <linux/device.h>
@@ -946,6 +946,7 @@ int mhi_device_configure(struct mhi_device *mhi_dev,

	return 0;
}
EXPORT_SYMBOL(mhi_device_configure);

static int of_parse_ev_cfg(struct mhi_controller *mhi_cntrl,
			   struct device_node *of_node)
+4 −4
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.*/
/* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.*/

#include <linux/module.h>
#include <linux/kernel.h>
@@ -948,7 +948,7 @@ static void mhi_netdev_remove(struct mhi_device *mhi_dev)
		debugfs_remove_recursive(mhi_netdev->dentry);
}

static int mhi_netdev_match(struct device *dev, void *data)
static int mhi_netdev_match(struct device *dev, const void *data)
{
	/* if phandle dt == device dt, we found a match */
	return (dev->of_node == data);
@@ -1131,13 +1131,13 @@ static int __init mhi_netdev_init(void)
}
module_init(mhi_netdev_init);

static int __exit mhi_netdev_exit(void)
static void __exit mhi_netdev_exit(void)
{
	debugfs_remove_recursive(dentry);

	mhi_driver_unregister(&mhi_netdev_driver);
}
module_init(mhi_netdev_exit);
module_exit(mhi_netdev_exit);

MODULE_DESCRIPTION("MHI NETDEV Network Interface");
MODULE_LICENSE("GPL v2");
+2 −1
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2019, The Linux Foundation. All rights reserved.*/
/* Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.*/

#include <linux/async.h>
#include <linux/device.h>
@@ -1201,6 +1201,7 @@ module_init(mhi_sat_init);
static void __exit mhi_sat_exit(void)
{
	struct mhi_sat_subsys *subsys;
	int i;

	unregister_rpmsg_driver(&mhi_sat_rpmsg_driver);