Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.16-rc5 18 lines 424 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#include <linux/of.h> 3#include <linux/platform_device.h> 4#include <linux/mtd/map.h> 5 6#ifdef CONFIG_MTD_PHYSMAP_IXP4XX 7int of_flash_probe_ixp4xx(struct platform_device *pdev, 8 struct device_node *np, 9 struct map_info *map); 10#else 11static inline 12int of_flash_probe_ixp4xx(struct platform_device *pdev, 13 struct device_node *np, 14 struct map_info *map) 15{ 16 return 0; 17} 18#endif