brintos

brintos / linux-shallow public Read only

0
0
Text · 218 B · ff5328b Raw
15 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _CHSC_SCH_H3#define _CHSC_SCH_H4 5struct chsc_request {6	struct completion completion;7	struct irb irb;8};9 10struct chsc_private {11	struct chsc_request *request;12};13 14#endif15