Skip to content

Commit

Permalink
ez5n: fix name of FAT offset table function
Browse files Browse the repository at this point in the history
  • Loading branch information
lifehackerhansol committed Nov 23, 2024
1 parent e389231 commit fedb29f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blocksds/source/platform/ez5n/ez5n.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ u32 EZ5N_GetVersion(void) {
}

// TODO: what is the structure of this table?
void ioEZP_SendFATOffsetTable(const u32* table, u32 num_words) {
void EZ5N_SendFATOffsetTable(const u32* table, u32 num_words) {
cardExt_WriteData(EZ5N_CMD_SD_SEND_FAT_ENTRY, (EZ5N_CTRL_WRITE_SD | MCCNT1_LEN_512), table,
num_words);
}
Expand Down
2 changes: 1 addition & 1 deletion blocksds/source/platform/ez5n/ez5n.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ void EZ5N_SDWriteSectors(u32 sector, u32 num_sectors, const void* buffer);
u32 EZ5N_CardReadHWVersion(void);

// TODO: what is the structure of this table?
void ioEZP_SendFATOffsetTable(const u32* table, u32 num_words);
void EZ5N_SendFATOffsetTable(const u32* table, u32 num_words);
#endif

0 comments on commit fedb29f

Please sign in to comment.