From 792f31bd10037724a63eb958c799418dc26a968c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Fri, 25 Sep 2015 04:22:13 +0000 Subject: [PATCH] kernel: crypto: fix ubsec_ssb.c compilation with 4.0+ MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 SVN-Revision: 47047 --- target/linux/generic/files/crypto/ocf/ubsec_ssb/ubsec_ssb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = { -- 2.35.1