https://github.com/torvalds/linux
Raw File
Tip revision: 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 authored by Linus Torvalds on 26 May 2024, 22:20:12 UTC
Linux 6.10-rc1
Tip revision: 1613e60
ofpart_bcm4908.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __BCM4908_PARTITIONS_H
#define __BCM4908_PARTITIONS_H

#ifdef CONFIG_MTD_OF_PARTS_BCM4908
int bcm4908_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts, int nr_parts);
#else
static inline int bcm4908_partitions_post_parse(struct mtd_info *mtd, struct mtd_partition *parts,
						int nr_parts)
{
	return -EOPNOTSUPP;
}
#endif

#endif
back to top