bus.c (03c11eb3b16dc0058589751dfd91f254be2be613) | bus.c (989e8661dc45babf43070d519011dfc1e33c8875) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2021 ARM Ltd. 4 */ 5 6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 7 8#include <linux/arm_ffa.h> --- 91 unchanged lines hidden (view full) --- 100static struct attribute *ffa_device_attributes_attrs[] = { 101 &dev_attr_partition_id.attr, 102 &dev_attr_uuid.attr, 103 &dev_attr_modalias.attr, 104 NULL, 105}; 106ATTRIBUTE_GROUPS(ffa_device_attributes); 107 | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2021 ARM Ltd. 4 */ 5 6#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 7 8#include <linux/arm_ffa.h> --- 91 unchanged lines hidden (view full) --- 100static struct attribute *ffa_device_attributes_attrs[] = { 101 &dev_attr_partition_id.attr, 102 &dev_attr_uuid.attr, 103 &dev_attr_modalias.attr, 104 NULL, 105}; 106ATTRIBUTE_GROUPS(ffa_device_attributes); 107 |
108struct bus_type ffa_bus_type = { | 108const struct bus_type ffa_bus_type = { |
109 .name = "arm_ffa", 110 .match = ffa_device_match, 111 .probe = ffa_device_probe, 112 .remove = ffa_device_remove, 113 .uevent = ffa_device_uevent, 114 .dev_groups = ffa_device_attributes_groups, 115}; 116EXPORT_SYMBOL_GPL(ffa_bus_type); --- 129 unchanged lines hidden --- | 109 .name = "arm_ffa", 110 .match = ffa_device_match, 111 .probe = ffa_device_probe, 112 .remove = ffa_device_remove, 113 .uevent = ffa_device_uevent, 114 .dev_groups = ffa_device_attributes_groups, 115}; 116EXPORT_SYMBOL_GPL(ffa_bus_type); --- 129 unchanged lines hidden --- |