Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _CHSC_SCH_H
0003 #define _CHSC_SCH_H
0004 
0005 struct chsc_request {
0006     struct completion completion;
0007     struct irb irb;
0008 };
0009 
0010 struct chsc_private {
0011     struct chsc_request *request;
0012 };
0013 
0014 #endif