1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Device physical location support
5 * Author: Won Chung <wonchung@google.com>
8 #include <linux/device.h>
11 extern bool dev_add_physical_location(struct device *dev);
12 extern const struct attribute_group dev_attr_physical_location_group;
14 static inline bool dev_add_physical_location(struct device *dev) { return false; };
15 static const struct attribute_group dev_attr_physical_location_group = {};