// SPDX-License-Identifier: GPL-2.0-only // // Copyright(c) 2020 Intel Corporation // // Author: Cezary Rojewski <[email protected]> // #include <linux/pm_runtime.h> #include "core.h" static ssize_t fw_version_show(struct device *dev, struct device_attribute *attr, char *buf) { … } static DEVICE_ATTR_RO(fw_version); static ssize_t fw_info_show(struct device *dev, struct device_attribute *attr, char *buf) { … } static DEVICE_ATTR_RO(fw_info); static struct attribute *catpt_attrs[] = …; static const struct attribute_group catpt_attr_group = …; const struct attribute_group *catpt_attr_groups[] = …;