Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __BCM4908_PARTITIONS_H
0003 #define __BCM4908_PARTITIONS_H
0004 
0005 #ifdef CONFIG_MTD_OF_PARTS_BCM4908
0006 int bcm4908_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts, int nr_parts);
0007 #else
0008 static inline int bcm4908_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts,
0009                         int nr_parts)
0010 {
0011     return -EOPNOTSUPP;
0012 }
0013 #endif
0014 
0015 #endif