greybus: Fix parameters of core_param()
authorViresh Kumar <viresh.kumar@linaro.org>
Mon, 20 Oct 2014 11:15:50 +0000 (16:45 +0530)
committerGreg Kroah-Hartman <greg@kroah.com>
Mon, 20 Oct 2014 22:22:32 +0000 (06:22 +0800)
commit8597e6b2b9df0a1c777e3183c105d78a470d0c66
tree723f0ef1d5f4dba1f96287f90539993320fedef4
parentff6e0b9c2f05e9f3a06e84af5af2fa8a2c8098f8
greybus: Fix parameters of core_param()

core_param() takes four parameters instead of three and so results in this
compilation error:

greybus/core.c:25:33: error: macro "core_param" requires 4 arguments, but only 3 given
 core_param(nogreybus, bool, 0444);
                                 ^

Fix this by adding proper arguments to it.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
drivers/staging/greybus/core.c