greybus: interface: fix type in enable error message

Fix type of PTR_ERR in an interface-enable error message.

Signed-off-by: Johan Hovold <johan@hovoldconsulting.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
Johan Hovold 2016-05-09 14:40:09 +02:00 committed by Greg Kroah-Hartman
parent 03fba180ae
commit ae0f6454bb

View file

@ -564,7 +564,7 @@ int gb_interface_enable(struct gb_interface *intf)
/* Establish control connection */
control = gb_control_create(intf);
if (IS_ERR(control)) {
dev_err(&intf->dev, "failed to create control device: %lu\n",
dev_err(&intf->dev, "failed to create control device: %ld\n",
PTR_ERR(control));
return PTR_ERR(control);
}