Mercurial > nand-ecoscentric
changeset 2305:94516b63a992
* src/mmc_spi.c: (mmc_spi_disk_lookup): just fixed a missed
semicolon.
| author | asl |
|---|---|
| date | Wed, 27 Sep 2006 08:22:56 +0000 |
| parents | 543067294b88 |
| children | d68e3769e3a1 |
| files | packages/devs/disk/generic/mmc/current/ChangeLog packages/devs/disk/generic/mmc/current/src/mmc_spi.c |
| diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/devs/disk/generic/mmc/current/ChangeLog +++ b/packages/devs/disk/generic/mmc/current/ChangeLog @@ -1,3 +1,8 @@ +2006-09-27 Sergei Gavrikov <sg@sgs.gomel.by> + + * src/mmc_spi.c: (mmc_spi_disk_lookup): just fixed a missed + semicolon. + 2006-09-21 Jonathan Larmour <jifl@eCosCentric.com> * Contribution of MMC/SPI package from eCosCentric. eCosCentric
--- a/packages/devs/disk/generic/mmc/current/src/mmc_spi.c +++ b/packages/devs/disk/generic/mmc/current/src/mmc_spi.c @@ -975,7 +975,7 @@ mmc_spi_disk_lookup(struct cyg_devtab_en ident.heads_num = disk->mmc_heads_per_cylinder; ident.sectors_num = disk->mmc_sectors_per_head; ident.lba_sectors_num = disk->mmc_block_count; - ident.phys_block_size = disk->mmc_write_block_length/512 + ident.phys_block_size = disk->mmc_write_block_length/512; ident.max_transfer = disk->mmc_write_block_length; DEBUG1("Calling disk_connected(): serial %s, firmware %s, model %s, heads %d, sectors %d, lba_sectors_num %d, phys_block_size %d\n", \
