aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rpmsg
diff options
context:
space:
mode:
authorHenri Roosen <henri.roosen@ginzinger.com>2017-06-02 13:36:04 +0200
committerBjorn Andersson <bjorn.andersson@linaro.org>2017-06-25 14:36:16 -0700
commitf6175294ab502f5f0d7200334c5e28d0c0f32be2 (patch)
tree48c7dfb6b2ec611c69e5e8fe9d240b1ad5dd1453 /drivers/rpmsg
parentrpmsg: virtio_rpmsg_bus: fix announce for devices without endpoint (diff)
downloadlinux-dev-f6175294ab502f5f0d7200334c5e28d0c0f32be2.tar.xz
linux-dev-f6175294ab502f5f0d7200334c5e28d0c0f32be2.zip
rpmsg: cleanup incorrect function in dev_err message
Trivial cleanup for incorrect function in dev_err message Signed-off-by: Henri Roosen <henri.roosen@ginzinger.com> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to 'drivers/rpmsg')
-rw-r--r--drivers/rpmsg/rpmsg_char.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rpmsg/rpmsg_char.c b/drivers/rpmsg/rpmsg_char.c
index 0ca2ccc09ca6..0b5d0d342ab0 100644
--- a/drivers/rpmsg/rpmsg_char.c
+++ b/drivers/rpmsg/rpmsg_char.c
@@ -390,7 +390,7 @@ static int rpmsg_eptdev_create(struct rpmsg_ctrldev *ctrldev,
ret = device_add(dev);
if (ret) {
- dev_err(dev, "device_register failed: %d\n", ret);
+ dev_err(dev, "device_add failed: %d\n", ret);
put_device(dev);
}
@@ -505,7 +505,7 @@ static int rpmsg_chrdev_probe(struct rpmsg_device *rpdev)
ret = device_add(dev);
if (ret) {
- dev_err(&rpdev->dev, "device_register failed: %d\n", ret);
+ dev_err(&rpdev->dev, "device_add failed: %d\n", ret);
put_device(dev);
}