X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=src%2Fpatches%2Fsuse-2.6.27.39%2Fpatches.drivers%2Fbnx2x-Missing-brackets.patch;fp=src%2Fpatches%2Fsuse-2.6.27.39%2Fpatches.drivers%2Fbnx2x-Missing-brackets.patch;h=0000000000000000000000000000000000000000;hb=e69f1bf2e594c55763989573f65cd524dd80d3a7;hp=e1de02bb0b87611cc3ad085f86211fab3e22a0b1;hpb=fd6c668a58cd533a7c0d0fb71a6b6e650ff0541f;p=ipfire-2.x.git diff --git a/src/patches/suse-2.6.27.39/patches.drivers/bnx2x-Missing-brackets.patch b/src/patches/suse-2.6.27.39/patches.drivers/bnx2x-Missing-brackets.patch deleted file mode 100644 index e1de02bb0b..0000000000 --- a/src/patches/suse-2.6.27.39/patches.drivers/bnx2x-Missing-brackets.patch +++ /dev/null @@ -1,28 +0,0 @@ -From f5ba6772f226be0266f95642c8162493246d3b79 Mon Sep 17 00:00:00 2001 -From: Eilon Greenstein -Date: Wed, 14 Jan 2009 21:29:18 -0800 -Subject: bnx2x: Missing brackets -Acked-by: Karsten Keil -Reference: bnc#472500 - -Calculation bug due to missing brackets - -Signed-off-by: Eilon Greenstein -Signed-off-by: David S. Miller ---- - drivers/net/bnx2x_main.c | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -Index: linux-2.6.27-bnx2x_2/drivers/net/bnx2x_main.c -=================================================================== ---- linux-2.6.27-bnx2x_2.orig/drivers/net/bnx2x_main.c -+++ linux-2.6.27-bnx2x_2/drivers/net/bnx2x_main.c -@@ -2923,7 +2923,7 @@ static irqreturn_t bnx2x_msix_sp_int(int - #define ADD_64(s_hi, a_hi, s_lo, a_lo) \ - do { \ - s_lo += a_lo; \ -- s_hi += a_hi + (s_lo < a_lo) ? 1 : 0; \ -+ s_hi += a_hi + ((s_lo < a_lo) ? 1 : 0); \ - } while (0) - - /* difference = minuend - subtrahend */