summaryrefslogtreecommitdiffstats
path: root/drivers/staging/agnx
diff options
context:
space:
mode:
authorRoel Kluin2009-01-31 11:44:02 +0100
committerGreg Kroah-Hartman2009-04-03 23:53:26 +0200
commit39b41b23e27ca7d4425ad1f23189eef936394fdf (patch)
tree33b01c0b8bf4e34d09a22821882735bc5001466b /drivers/staging/agnx
parentStaging: agnx: Move a dereference below a NULL test (diff)
downloadkernel-qcow2-linux-39b41b23e27ca7d4425ad1f23189eef936394fdf.tar.gz
kernel-qcow2-linux-39b41b23e27ca7d4425ad1f23189eef936394fdf.tar.xz
kernel-qcow2-linux-39b41b23e27ca7d4425ad1f23189eef936394fdf.zip
Staging: agnx: i reaches -1, tested 0
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/agnx')
-rw-r--r--drivers/staging/agnx/rf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/agnx/rf.c b/drivers/staging/agnx/rf.c
index 8294b6e2eb9d..9e1e9d5ccf9b 100644
--- a/drivers/staging/agnx/rf.c
+++ b/drivers/staging/agnx/rf.c
@@ -669,7 +669,7 @@ static inline void calibra_delay(struct agnx_priv *priv)
unsigned int i = 100;
wmb();
- while (i--) {
+ while (--i) {
reg = (ioread32(ctl + AGNX_ACI_STATUS));
if (reg == 0x4000)
break;