aboutsummaryrefslogtreecommitdiff
path: root/kernel/ethosu_driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/ethosu_driver.c')
-rw-r--r--kernel/ethosu_driver.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/kernel/ethosu_driver.c b/kernel/ethosu_driver.c
index 085b2c0..48d2155 100644
--- a/kernel/ethosu_driver.c
+++ b/kernel/ethosu_driver.c
@@ -62,11 +62,8 @@ static dev_t devt;
static int ethosu_rpmsg_probe(struct rpmsg_device *rpdev)
{
- struct device *dev = &rpdev->dev;
int ret;
- dev_info(dev, "%s", __FUNCTION__);
-
/* Initialize device */
ret = ethosu_dev_init(rpdev, ethosu_class, devt);
if (ret)
@@ -77,10 +74,6 @@ static int ethosu_rpmsg_probe(struct rpmsg_device *rpdev)
static void ethosu_rpmsg_remove(struct rpmsg_device *rpdev)
{
- struct device *dev = &rpdev->dev;
-
- dev_info(dev, "%s", __FUNCTION__);
-
ethosu_dev_deinit(rpdev);
}