chsc_sch.h 218 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _CHSC_SCH_H
  3. #define _CHSC_SCH_H
  4. struct chsc_request {
  5. struct completion completion;
  6. struct irb irb;
  7. };
  8. struct chsc_private {
  9. struct chsc_request *request;
  10. };
  11. #endif