16 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __BCM4908_PARTITIONS_H3#define __BCM4908_PARTITIONS_H4 5#ifdef CONFIG_MTD_OF_PARTS_BCM49086int bcm4908_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts, int nr_parts);7#else8static inline int bcm4908_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts,9 int nr_parts)10{11 return -EOPNOTSUPP;12}13#endif14 15#endif16