Dear Kuo-Jung Su, In message <[email protected]> you wrote: > From: Kuo-Jung Su <[email protected]> > > Faraday Virtual Machine (FVM) is a QEMU based emulator > which is designed for early stage software development > (i.e., IPL, SPL development). ... > +ulong clk_get_rate(const char *id) > +{ > + ulong ret = 0; > + > + if (!strcmp(id, "AHB")) > + ret = clk_get_rate_ahb(); > + else if (!strcmp(id, "APB")) > + ret = clk_get_rate_apb(); > + else if (!strcmp(id, "CPU")) > + ret = clk_get_rate_cpu(); > + else if (!strcmp(id, "I2C")) > + ret = clk_get_rate_apb(); > + else if (!strcmp(id, "SSP")) > + ret = clk_get_rate_apb(); > + else if (!strcmp(id, "SPI")) > + ret = clk_get_rate_ahb(); > + else if (!strcmp(id, "MMC") || !strcmp(id, "SDC")) > + ret = clk_get_rate_ahb(); > + > + return ret; > +}
I have seen basically identical code in [PATCH v11 4/6] arm: faraday: add A369 evaluation board; please move this (and other common code) into a common location so we have only one implementation of common code. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: [email protected] You don't stop doing things because you get old. You get old because you stop doing things. - Rosamunde Pilcher _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

