diff options
author | Wan Jiabing <wanjiabing@vivo.com> | 2021-03-30 18:56:25 +0800 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2021-04-05 11:30:57 +0200 |
commit | f38033c8dbc3365da163fece752e903fab7fced3 (patch) | |
tree | 8714f6bba2465060772eb681c5ce7a354c162fb7 | |
parent | 4e774d59e59956c45c02cfcc23f85a26be8d8bea (diff) | |
download | lwn-f38033c8dbc3365da163fece752e903fab7fced3.tar.gz lwn-f38033c8dbc3365da163fece752e903fab7fced3.zip |
s390/cio: remove duplicate struct ccw1 declaration
struct ccw1 is declared twice. One has been declared
at 21st line. Remove the duplicate.
Signed-off-by: Wan Jiabing <wanjiabing@vivo.com>
Acked-by: Vineeth Vijayan <vneethv@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
-rw-r--r-- | arch/s390/include/asm/ccwdev.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/s390/include/asm/ccwdev.h b/arch/s390/include/asm/ccwdev.h index 778247bb1d61..d4e90f2ba77e 100644 --- a/arch/s390/include/asm/ccwdev.h +++ b/arch/s390/include/asm/ccwdev.h @@ -152,9 +152,6 @@ extern struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv, * when new devices for its type pop up */ extern int ccw_driver_register (struct ccw_driver *driver); extern void ccw_driver_unregister (struct ccw_driver *driver); - -struct ccw1; - extern int ccw_device_set_options_mask(struct ccw_device *, unsigned long); extern int ccw_device_set_options(struct ccw_device *, unsigned long); extern void ccw_device_clear_options(struct ccw_device *, unsigned long); |