diff options
author | Peter Denison <openwrt@marshadder.org> | 2008-05-20 22:33:45 +0000 |
---|---|---|
committer | Peter Denison <openwrt@marshadder.org> | 2008-05-20 22:33:45 +0000 |
commit | f027ecb2cf9b1a1c6cab6f5e4a9d99c49bced63c (patch) | |
tree | 7730f5afe931a56f2bbb8c7973521668cf78283e /package/broadcom-diag/src/diag.c | |
parent | de5c50cfe473bb7d7a833645697a25dd2b4f4ab7 (diff) | |
download | upstream-f027ecb2cf9b1a1c6cab6f5e4a9d99c49bced63c.tar.gz upstream-f027ecb2cf9b1a1c6cab6f5e4a9d99c49bced63c.tar.bz2 upstream-f027ecb2cf9b1a1c6cab6f5e4a9d99c49bced63c.zip |
Stopgap compilation fixes for diag and switch under 2.6.25
SVN-Revision: 11231
Diffstat (limited to 'package/broadcom-diag/src/diag.c')
-rw-r--r-- | package/broadcom-diag/src/diag.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c index e1655d0b74..a1ee842f4f 100644 --- a/package/broadcom-diag/src/diag.c +++ b/package/broadcom-diag/src/diag.c @@ -682,7 +682,7 @@ static struct platform_t __init *platform_detect(void) /* Look for a model identifier */ /* Based on "model_name" */ - if (buf = nvram_get("model_name")) { + if ((buf = nvram_get("model_name"))) { if (!strcmp(buf, "DIR-130")) return &platforms[DIR130]; if (!strcmp(buf, "DIR-330")) @@ -690,13 +690,13 @@ static struct platform_t __init *platform_detect(void) } /* Based on "model_no" */ - if (buf = nvram_get("model_no")) { + if ((buf = nvram_get("model_no"))) { if (startswith(buf,"WL700")) /* WL700* */ return &platforms[WL700GE]; } /* Based on "hardware_version" */ - if (buf = nvram_get("hardware_version")) { + if ((buf = nvram_get("hardware_version"))) { if (startswith(buf,"WL500GPV2-")) /* WL500GPV2-* */ return &platforms[WL500GPV2]; if (startswith(buf,"WL520GC-")) /* WL520GU-* */ @@ -706,7 +706,7 @@ static struct platform_t __init *platform_detect(void) } /* Based on "ModelId" */ - if (buf = nvram_get("ModelId")) { + if ((buf = nvram_get("ModelId"))) { if (!strcmp(buf, "WR850GP")) return &platforms[WR850GP]; if (!strcmp(buf,"WX-5565")) |