zorro.h 341 B

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