X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=board%2Fgw8260%2Fgw8260.c;h=64c54d5e8453554729447567b177f5836d37a0b5;hb=74cf809972658eae18c33e078c05a7cc9c9460c9;hp=77a1e1d3ac1624779e169ce77984eed5f8d8f1a9;hpb=f0c0b3a9e6f28a34d6da5edabba1e874fdf8e675;p=u-boot diff --git a/board/gw8260/gw8260.c b/board/gw8260/gw8260.c index 77a1e1d3ac..64c54d5e84 100644 --- a/board/gw8260/gw8260.c +++ b/board/gw8260/gw8260.c @@ -544,15 +544,11 @@ int mem_test_walk (void) /*********************************************************************/ int testdram (void) { - char *s; int rundata, runaddress, runwalk; - s = getenv ("testdramdata"); - rundata = (s && (*s == 'y')) ? 1 : 0; - s = getenv ("testdramaddress"); - runaddress = (s && (*s == 'y')) ? 1 : 0; - s = getenv ("testdramwalk"); - runwalk = (s && (*s == 'y')) ? 1 : 0; + rundata = getenv_yesno("testdramdata") == 1; + runaddress = getenv_yesno("testdramaddress") == 1; + runwalk = getenv_yesno("testdramwalk") == 1; if ((rundata == 1) || (runaddress == 1) || (runwalk == 1)) { printf ("Testing RAM ... ");