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 v5.1-rc7 18 lines 271 B view raw
1// SPDX-License-Identifier: GPL-2.0+ 2#include <linux/device.h> 3 4#ifndef PL111_NOMADIK_H 5#define PL111_NOMADIK_H 6#endif 7 8#ifdef CONFIG_ARCH_NOMADIK 9 10void pl111_nomadik_init(struct device *dev); 11 12#else 13 14static inline void pl111_nomadik_init(struct device *dev) 15{ 16} 17 18#endif