audio_mod_devicetable.h 474 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef AUDIO_MOD_DEVICETABLE_H
  6. #define AUDIO_MOD_DEVICETABLE_H
  7. #include <linux/mod_devicetable.h>
  8. /* soundwire */
  9. #define SOUNDWIRE_NAME_SIZE 32
  10. #define SOUNDWIRE_MODULE_PREFIX "swr:"
  11. struct swr_device_id {
  12. char name[SOUNDWIRE_NAME_SIZE];
  13. kernel_ulong_t driver_data; /* Data private to the driver */
  14. };
  15. #endif /* AUDIO_MOD_DEVICETABLE_H */