chore: Remove tracked build artifacts

This commit is contained in:
lmx
2025-11-28 16:24:27 +08:00
parent 892ed9267b
commit 818e8c3778
2356 changed files with 0 additions and 587882 deletions

View File

@ -1,42 +0,0 @@
#ifndef SDMMC_MODULE_H
#define SDMMC_MODULE_H
#include "generic/typedef.h"
#include "generic/ioctl.h"
#define SD_CMD_DECT 0
#define SD_CLK_DECT 1
#define SD_IO_DECT 2
#define SD_CLASS_0 0
#define SD_CLASS_2 1
#define SD_CLASS_4 2
#define SD_CLASS_6 3
#define SD_CLASS_10 4
#define SD_IOCTL_GET_CLASS _IOR('S', 0, 4)
#define SD_IOCTL_SUPPORT_ERASE_OPERAT 1
typedef enum {
SDMMC_NORMAL_ERASE,
SDMMC_TRIM_ERASE,
SDMMC_DISCARD,
SDMMC_SECURE_ERASE,
SDMMC_SECURE_TRIM_STEP_1,
SDMMC_SECURE_TRIM_STEP_2,
} sdmmc_erase_type;
struct sdmmc_erase_arg_t {
sdmmc_erase_type erase_type;
u32 block_addr;
u32 block_quantity;
};
#endif