making unnecessary old log statements from FAT driver

This commit is contained in:
Benji Dial 2021-03-02 23:25:10 -05:00
parent 9e13993449
commit 43693f88c7

View file

@ -539,7 +539,6 @@ bool try_fat_init_drive(struct drive *d) {
next_fi->sectors_per_fat * next_fi->fats; next_fi->sectors_per_fat * next_fi->fats;
infos[next_id].data_start = infos[next_id].root_start + infos[next_id].data_start = infos[next_id].root_start +
((next_fi->root_entries - 1) >> 4) + 1; ((next_fi->root_entries - 1) >> 4) + 1;
logf(LOG_INFO, "0x%h <- 0x%h", &infos[next_id].from_drive, drives + n_drives);
infos[next_id].from_drive = drives + n_drives; infos[next_id].from_drive = drives + n_drives;
d->read_sectors(d, next_fi->reserved_sectors, next_fi->sectors_per_fat, infos[next_id].fat); d->read_sectors(d, next_fi->reserved_sectors, next_fi->sectors_per_fat, infos[next_id].fat);
@ -555,10 +554,6 @@ bool try_fat_init_drive(struct drive *d) {
void fat_ready_shutdown() { void fat_ready_shutdown() {
for (uint8_t i = 0; i < next_id; ++i) for (uint8_t i = 0; i < next_id; ++i)
for (uint8_t j = 0; j < MAX_OPEN_FILES_PER_DRIVE; ++j) for (uint8_t j = 0; j < MAX_OPEN_FILES_PER_DRIVE; ++j)
if (infos[i].open_files[j].di_sector) { if (infos[i].open_files[j].di_sector)
logf(LOG_INFO, "i = %d, j = %d", i, j);
logf(LOG_INFO, "freeing file %d from drive 0x%h (number %d)", j + 1, infos[i].from_drive, infos[i].from_drive - drives + 1);
logf(LOG_INFO, "0x%h -> 0x%h", &infos[i].from_drive, infos[i].from_drive);
fat_free_file(infos[i].from_drive, j + 1); fat_free_file(infos[i].from_drive, j + 1);
}
} }