sdca_function_device.h 374 B

123456789101112131415
  1. /* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
  2. /* Copyright(c) 2024 Intel Corporation. */
  3. #ifndef __SDCA_FUNCTION_DEVICE_H
  4. #define __SDCA_FUNCTION_DEVICE_H
  5. struct sdca_dev {
  6. struct auxiliary_device auxdev;
  7. struct sdca_function_data function;
  8. };
  9. #define auxiliary_dev_to_sdca_dev(auxiliary_dev) \
  10. container_of(auxiliary_dev, struct sdca_dev, auxdev)
  11. #endif