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 v4.8-rc5 16 lines 374 B view raw
1#include <linux/of.h> 2#include <linux/mtd/map.h> 3 4#ifdef CONFIG_MTD_PHYSMAP_OF_VERSATILE 5int of_flash_probe_versatile(struct platform_device *pdev, 6 struct device_node *np, 7 struct map_info *map); 8#else 9static inline 10int of_flash_probe_versatile(struct platform_device *pdev, 11 struct device_node *np, 12 struct map_info *map) 13{ 14 return 0; 15} 16#endif