projects
/
platform
/
kernel
/
linux-rpi.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
script: Make linux-tizen-modules-source git repo up-to-date on the same branch
[platform/kernel/linux-rpi.git]
/
drivers
/
s390
/
cio
/
chsc_sch.h
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef _CHSC_SCH_H
3
#define _CHSC_SCH_H
4
5
struct chsc_request {
6
struct completion completion;
7
struct irb irb;
8
};
9
10
struct chsc_private {
11
struct chsc_request *request;
12
};
13
14
#endif