1 /* Public domain. */
2 
3 #ifndef _LINUX_NUMA_H
4 #define _LINUX_NUMA_H
5 
6 #define NUMA_NO_NODE	(-1)
7 
8 static inline int
dev_to_node(struct device * dev)9 dev_to_node(struct device *dev)
10 {
11 	return NUMA_NO_NODE;
12 }
13 
14 #endif
15