mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-06 20:53:54 +08:00
12 lines
242 B
C
12 lines
242 B
C
|
#include <asm-generic/topology.h>
|
||
|
|
||
|
#ifndef _ASM_MICROBLAZE_TOPOLOGY_H
|
||
|
#define _ASM_MICROBLAZE_TOPOLOGY_H
|
||
|
|
||
|
struct device_node;
|
||
|
static inline int of_node_to_nid(struct device_node *device)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
#endif /* _ASM_MICROBLAZE_TOPOLOGY_H */
|