diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-09-25 04:22:13 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2015-09-25 04:22:13 +0000 |
commit | 90b189ae6c44d09ebf7e563caa94bcb692e3269d (patch) | |
tree | bf2fa2a7e6c365b75a942cb4bac620fa88964eea /target/linux/generic | |
parent | e263fcdd1e7fb8c87e675c1ab2dfb3c22321a6f1 (diff) | |
download | master-187ad058-90b189ae6c44d09ebf7e563caa94bcb692e3269d.tar.gz master-187ad058-90b189ae6c44d09ebf7e563caa94bcb692e3269d.tar.bz2 master-187ad058-90b189ae6c44d09ebf7e563caa94bcb692e3269d.zip |
kernel: crypto: fix ubsec_ssb.c compilation with 4.0+
SSB_DEVTABLE_END was removed in 4.0 by upstream commit 673e2baaa6d9
("treewide: Remove unnecessary SSB_DEVTABLE_END macro").
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47047 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic')
-rw-r--r-- | target/linux/generic/files/crypto/ocf/ubsec_ssb/ubsec_ssb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/files/crypto/ocf/ubsec_ssb/ubsec_ssb.c b/target/linux/generic/files/crypto/ocf/ubsec_ssb/ubsec_ssb.c index a81594e593..e557e7aad7 100644 --- a/target/linux/generic/files/crypto/ocf/ubsec_ssb/ubsec_ssb.c +++ b/target/linux/generic/files/crypto/ocf/ubsec_ssb/ubsec_ssb.c @@ -178,7 +178,7 @@ static struct proc_dir_entry *procdebug; static struct ssb_device_id ubsec_ssb_tbl[] = { /* Broadcom BCM5365P IPSec Core */ SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_IPSEC, SSB_ANY_REV), - SSB_DEVTABLE_END + {}, }; static struct ssb_driver ubsec_ssb_driver = { |