/*
  * Given a pointer to the MTD object in the mtd_part structure, we can retrieve
- * the pointer to that structure with this macro.
+ * the pointer to that structure.
  */
-#define PART(x)  ((struct mtd_part *)(x))
+static inline struct mtd_part *mtd_to_part(const struct mtd_info *mtd)
+{
+       return container_of(mtd, struct mtd_part, mtd);
+}
 
 
 /*
 static int part_read(struct mtd_info *mtd, loff_t from, size_t len,
                size_t *retlen, u_char *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        struct mtd_ecc_stats stats;
        int res;
 
 static int part_point(struct mtd_info *mtd, loff_t from, size_t len,
                size_t *retlen, void **virt, resource_size_t *phys)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
 
        return part->master->_point(part->master, from + part->offset, len,
                                    retlen, virt, phys);
 
 static int part_unpoint(struct mtd_info *mtd, loff_t from, size_t len)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
 
        return part->master->_unpoint(part->master, from + part->offset, len);
 }
                                            unsigned long offset,
                                            unsigned long flags)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
 
        offset += part->offset;
        return part->master->_get_unmapped_area(part->master, len, offset,
 static int part_read_oob(struct mtd_info *mtd, loff_t from,
                struct mtd_oob_ops *ops)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        int res;
 
        if (from >= mtd->size)
 static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from,
                size_t len, size_t *retlen, u_char *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_read_user_prot_reg(part->master, from, len,
                                                 retlen, buf);
 }
 static int part_get_user_prot_info(struct mtd_info *mtd, size_t len,
                                   size_t *retlen, struct otp_info *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_get_user_prot_info(part->master, len, retlen,
                                                 buf);
 }
 static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from,
                size_t len, size_t *retlen, u_char *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_read_fact_prot_reg(part->master, from, len,
                                                 retlen, buf);
 }
 static int part_get_fact_prot_info(struct mtd_info *mtd, size_t len,
                                   size_t *retlen, struct otp_info *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_get_fact_prot_info(part->master, len, retlen,
                                                 buf);
 }
 static int part_write(struct mtd_info *mtd, loff_t to, size_t len,
                size_t *retlen, const u_char *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_write(part->master, to + part->offset, len,
                                    retlen, buf);
 }
 static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len,
                size_t *retlen, const u_char *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_panic_write(part->master, to + part->offset, len,
                                          retlen, buf);
 }
 static int part_write_oob(struct mtd_info *mtd, loff_t to,
                struct mtd_oob_ops *ops)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
 
        if (to >= mtd->size)
                return -EINVAL;
 static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from,
                size_t len, size_t *retlen, u_char *buf)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_write_user_prot_reg(part->master, from, len,
                                                  retlen, buf);
 }
 static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from,
                size_t len)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_lock_user_prot_reg(part->master, from, len);
 }
 
 static int part_writev(struct mtd_info *mtd, const struct kvec *vecs,
                unsigned long count, loff_t to, size_t *retlen)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_writev(part->master, vecs, count,
                                     to + part->offset, retlen);
 }
 
 static int part_erase(struct mtd_info *mtd, struct erase_info *instr)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        int ret;
 
        instr->addr += part->offset;
 void mtd_erase_callback(struct erase_info *instr)
 {
        if (instr->mtd->_erase == part_erase) {
-               struct mtd_part *part = PART(instr->mtd);
+               struct mtd_part *part = mtd_to_part(instr->mtd);
 
                if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN)
                        instr->fail_addr -= part->offset;
 
 static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_lock(part->master, ofs + part->offset, len);
 }
 
 static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_unlock(part->master, ofs + part->offset, len);
 }
 
 static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_is_locked(part->master, ofs + part->offset, len);
 }
 
 static void part_sync(struct mtd_info *mtd)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        part->master->_sync(part->master);
 }
 
 static int part_suspend(struct mtd_info *mtd)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return part->master->_suspend(part->master);
 }
 
 static void part_resume(struct mtd_info *mtd)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        part->master->_resume(part->master);
 }
 
 static int part_block_isreserved(struct mtd_info *mtd, loff_t ofs)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        ofs += part->offset;
        return part->master->_block_isreserved(part->master, ofs);
 }
 
 static int part_block_isbad(struct mtd_info *mtd, loff_t ofs)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        ofs += part->offset;
        return part->master->_block_isbad(part->master, ofs);
 }
 
 static int part_block_markbad(struct mtd_info *mtd, loff_t ofs)
 {
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        int res;
 
        ofs += part->offset;
                struct device_attribute *attr, char *buf)
 {
        struct mtd_info *mtd = dev_get_drvdata(dev);
-       struct mtd_part *part = PART(mtd);
+       struct mtd_part *part = mtd_to_part(mtd);
        return snprintf(buf, PAGE_SIZE, "%lld\n", part->offset);
 }
 
        if (!mtd_is_partition(mtd))
                return mtd->size;
 
-       return PART(mtd)->master->size;
+       return mtd_to_part(mtd)->master->size;
 }
 EXPORT_SYMBOL_GPL(mtd_get_device_size);