Mercurial > flash_v2
diff packages/io/flash/current/src/flash.c @ 1389:587b0b1c6927
* src/flash.c:
* src/flashiodev.c:
* include/flash.h: Remove references to work_space and work_space_size
since they are no longer used.
| author | asl |
|---|---|
| date | Mon, 24 Nov 2003 11:22:41 +0000 |
| parents | e4d78a7a628d |
| children | 707a873489c8 |
line wrap: on
line diff
--- a/packages/io/flash/current/src/flash.c +++ b/packages/io/flash/current/src/flash.c @@ -73,14 +73,12 @@ struct flash_info flash_info; int -flash_init(void *work_space, int work_space_size, _printf *pf) +flash_init(_printf *pf) { int err; if (flash_info.init) return FLASH_ERR_OK; flash_info.pf = pf; // Do this before calling into the driver - flash_info.work_space = work_space; - flash_info.work_space_size = work_space_size; if ((err = flash_hwr_init()) != FLASH_ERR_OK) { return err; }
