partition_wp.h 427 B

123456789101112131415161718
  1. #ifndef __PART_WP_H__
  2. #define __PART_WP_H__
  3. #include "platform/errno.h"
  4. #include "platform/mmc_core.h"
  5. #ifdef MTK_EMMC_POWER_ON_WP
  6. extern int partition_write_prot_set(const char *start_part_name,
  7. const char *end_part_name, EMMC_WP_TYPE type);
  8. #else
  9. static inline int partition_write_prot_set(const char *start_part_name,
  10. const char *end_part_name, EMMC_WP_TYPE type) {
  11. return -EINVAL;
  12. }
  13. #endif
  14. #endif