From: batt Date: Tue, 5 Feb 2008 12:52:39 +0000 (+0000) Subject: Disk size is computed by driver. X-Git-Tag: 1.0.0~162 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=3fc75747c81395f9027b6b27cd03037e2a8eec08;p=bertos.git Disk size is computed by driver. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1090 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/app/battfs/battfs_test.c b/app/battfs/battfs_test.c index a0b8e348..b949d074 100644 --- a/app/battfs/battfs_test.c +++ b/app/battfs/battfs_test.c @@ -56,7 +56,6 @@ static bool disk_open(struct BattFsSuper *d) fseek(fp, 0, SEEK_END); d->page_size = PAGE_SIZE; d->page_count = ftell(fp) / d->page_size; - d->disk_size = d->page_size * d->page_count; d->page_array = malloc(d->page_count * sizeof(pgcnt_t)); TRACEMSG("page_size:%d, page_count:%d, disk_size:%d\n", d->page_size, d->page_count, d->disk_size); return (fp && d->page_array);