diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-06-14 11:54:29 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-06-14 11:54:29 +0200 |
commit | d565ed38d045793b76f022565a50793a3535bdbd (patch) | |
tree | f82586320fd8d27479297d01da6c4e89cdc2d0a1 /arch/arm/mach-rpc | |
parent | f40609d1591fbbd9d391f1f8220173237911ab23 (diff) | |
download | linux-d565ed38d045793b76f022565a50793a3535bdbd.tar.gz linux-d565ed38d045793b76f022565a50793a3535bdbd.tar.bz2 linux-d565ed38d045793b76f022565a50793a3535bdbd.zip |
arm: mach-rpc: ecard: fix build error
The last commit from me had a missing ';' which broke the build.
Thanks to Arnd for pointing out the issue.
Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/arm/mach-rpc')
-rw-r--r-- | arch/arm/mach-rpc/ecard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-rpc/ecard.c b/arch/arm/mach-rpc/ecard.c index 5966964222b5..bdb5ec1cf560 100644 --- a/arch/arm/mach-rpc/ecard.c +++ b/arch/arm/mach-rpc/ecard.c @@ -789,7 +789,7 @@ static ssize_t resource_show(struct device *dev, struct device_attribute *attr, return str - buf; } -static DEVICE_ATTR_RO(resource) +static DEVICE_ATTR_RO(resource); static ssize_t vendor_show(struct device *dev, struct device_attribute *attr, char *buf) { |