From: David S. Miller Date: Sun, 17 Apr 2011 07:07:55 +0000 (-0700) Subject: atm: he: Fix undefined sequence points. X-Git-Tag: v3.0-rc1~377^2~383 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e60c5e14fbfcaa54f430aad80b38763a403b2158;p=pandora-kernel.git atm: he: Fix undefined sequence points. GCC complains in these queue index operations because we perform operations of the form: x = some_operation(++x); which is undefined. Replace with: x = some_operation(x + 1); which is well defined and provides the intended operation. Signed-off-by: David S. Miller --- Reading git-diff-tree failed