drm/nouveau: fix kernel-doc comments
[drm/drm-misc.git] / drivers / base / physical_location.h
blob3f3f613079985ef651cfa4ee32bcef793e78dcdf
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Device physical location support
5 * Author: Won Chung <wonchung@google.com>
6 */
8 #include <linux/device.h>
10 #ifdef CONFIG_ACPI
11 bool dev_add_physical_location(struct device *dev);
12 extern const struct attribute_group dev_attr_physical_location_group;
13 #else
14 static inline bool dev_add_physical_location(struct device *dev) { return false; };
15 static const struct attribute_group dev_attr_physical_location_group = {};
16 #endif