1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-12-23 02:42:09 +00:00

Fix const-correctness issue in sdmmc.h

This commit is contained in:
TuxSH 2018-05-06 15:22:35 +02:00
parent 17545ac103
commit 68eec056a9
2 changed files with 5 additions and 5 deletions

View file

@ -130,7 +130,7 @@ struct mmc {
enum sdmmc_controller controller; enum sdmmc_controller controller;
/* Controller properties */ /* Controller properties */
char *name; const char *name;
bool use_dma; bool use_dma;
unsigned int timeout; unsigned int timeout;
enum tegra_named_gpio card_detect_gpio; enum tegra_named_gpio card_detect_gpio;

View file

@ -79,7 +79,7 @@ struct mmc {
enum sdmmc_controller controller; enum sdmmc_controller controller;
/* Controller properties */ /* Controller properties */
char *name; const char *name;
unsigned int timeout; unsigned int timeout;
enum sdmmc_card_type card_type; enum sdmmc_card_type card_type;
bool use_dma; bool use_dma;