blob: f84df9fb4c200ec3d8c87924fd7e2b96ac003d25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Zorro bus
*/
extern struct bus_type zorro_bus_type;
#ifdef CONFIG_ZORRO_NAMES
extern void zorro_name_device(struct zorro_dev *z);
#else
static inline void zorro_name_device(struct zorro_dev *dev) { }
#endif
extern const struct attribute_group *zorro_device_attribute_groups[];
|