Commit 96560f76 authored by Linus Torvalds's avatar Linus Torvalds

Use inline function instead of macro.

This means we won't get any warnings about unused
variables - they _are_ used in some configurations.
parent 2bb28892
...@@ -74,7 +74,7 @@ int cpu_down(unsigned int cpu); ...@@ -74,7 +74,7 @@ int cpu_down(unsigned int cpu);
#define hotcpu_notifier(fn, pri) #define hotcpu_notifier(fn, pri)
/* CPUs don't go offline once they're online w/o CONFIG_HOTPLUG_CPU */ /* CPUs don't go offline once they're online w/o CONFIG_HOTPLUG_CPU */
#define cpu_is_offline(cpu) 0 static inline int cpu_is_offline(int cpu) { return 0; }
#endif #endif
#endif /* _LINUX_CPU_H_ */ #endif /* _LINUX_CPU_H_ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment