fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmocom-bb/+/38148?usp=email )
Change subject: firmware: k2xx: fix comments about flash organization ......................................................................
firmware: k2xx: fix comments about flash organization
Change-Id: I1b6a50cf7e10b5d71c6aa8d492721a7345ad892a --- M src/target/firmware/board/se_k2xx/init.c 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve
diff --git a/src/target/firmware/board/se_k2xx/init.c b/src/target/firmware/board/se_k2xx/init.c index 7121867..631a87f 100644 --- a/src/target/firmware/board/se_k2xx/init.c +++ b/src/target/firmware/board/se_k2xx/init.c @@ -132,9 +132,9 @@ /* Initialize ABB driver (uses SPI) */ twl3025_init();
- /* K200i uses 13 sectors of 256 KiB each */ + /* SPANSION flash has 13 sectors of 256 KiB each */ if (tiffs_init(0x01800000, 0x40000, 13) < 0) { - /* K220i uses 52 sectors of 64 KiB each */ + /* SAMSUNG flash has 52 sectors of 64 KiB each */ tiffs_init(0x01800000, 0x10000, 52); } }