diff options
Diffstat (limited to 'drivers/memstick/core')
-rw-r--r-- | drivers/memstick/core/memstick.c | 6 | ||||
-rw-r--r-- | drivers/memstick/core/ms_block.c | 6 | ||||
-rw-r--r-- | drivers/memstick/core/ms_block.h | 6 | ||||
-rw-r--r-- | drivers/memstick/core/mspro_block.c | 6 |
4 files changed, 4 insertions, 20 deletions
diff --git a/drivers/memstick/core/memstick.c b/drivers/memstick/core/memstick.c index 1246d69ba187..6cfb293396f2 100644 --- a/drivers/memstick/core/memstick.c +++ b/drivers/memstick/core/memstick.c | |||
@@ -1,15 +1,11 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Sony MemoryStick support | 3 | * Sony MemoryStick support |
3 | * | 4 | * |
4 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> | 5 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> |
5 | * | 6 | * |
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * Special thanks to Carlos Corbacho for providing various MemoryStick cards | 7 | * Special thanks to Carlos Corbacho for providing various MemoryStick cards |
11 | * that made this driver possible. | 8 | * that made this driver possible. |
12 | * | ||
13 | */ | 9 | */ |
14 | 10 | ||
15 | #include <linux/memstick.h> | 11 | #include <linux/memstick.h> |
diff --git a/drivers/memstick/core/ms_block.c b/drivers/memstick/core/ms_block.c index 82daccc9ea62..384927ebde74 100644 --- a/drivers/memstick/core/ms_block.c +++ b/drivers/memstick/core/ms_block.c | |||
@@ -1,15 +1,11 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * ms_block.c - Sony MemoryStick (legacy) storage support | 3 | * ms_block.c - Sony MemoryStick (legacy) storage support |
3 | 4 | ||
4 | * Copyright (C) 2013 Maxim Levitsky <maximlevitsky@gmail.com> | 5 | * Copyright (C) 2013 Maxim Levitsky <maximlevitsky@gmail.com> |
5 | * | 6 | * |
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * Minor portions of the driver were copied from mspro_block.c which is | 7 | * Minor portions of the driver were copied from mspro_block.c which is |
11 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> | 8 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> |
12 | * | ||
13 | */ | 9 | */ |
14 | #define DRIVER_NAME "ms_block" | 10 | #define DRIVER_NAME "ms_block" |
15 | #define pr_fmt(fmt) DRIVER_NAME ": " fmt | 11 | #define pr_fmt(fmt) DRIVER_NAME ": " fmt |
diff --git a/drivers/memstick/core/ms_block.h b/drivers/memstick/core/ms_block.h index 9ba84e0ced63..122e1a8a8bd5 100644 --- a/drivers/memstick/core/ms_block.h +++ b/drivers/memstick/core/ms_block.h | |||
@@ -1,18 +1,14 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * ms_block.h - Sony MemoryStick (legacy) storage support | 3 | * ms_block.h - Sony MemoryStick (legacy) storage support |
3 | 4 | ||
4 | * Copyright (C) 2013 Maxim Levitsky <maximlevitsky@gmail.com> | 5 | * Copyright (C) 2013 Maxim Levitsky <maximlevitsky@gmail.com> |
5 | * | 6 | * |
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * Minor portions of the driver are copied from mspro_block.c which is | 7 | * Minor portions of the driver are copied from mspro_block.c which is |
11 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> | 8 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> |
12 | * | 9 | * |
13 | * Also ms structures were copied from old broken driver by same author | 10 | * Also ms structures were copied from old broken driver by same author |
14 | * These probably come from MS spec | 11 | * These probably come from MS spec |
15 | * | ||
16 | */ | 12 | */ |
17 | 13 | ||
18 | #ifndef MS_BLOCK_NEW_H | 14 | #ifndef MS_BLOCK_NEW_H |
diff --git a/drivers/memstick/core/mspro_block.c b/drivers/memstick/core/mspro_block.c index 9545e87b6085..cd6b8d4f2335 100644 --- a/drivers/memstick/core/mspro_block.c +++ b/drivers/memstick/core/mspro_block.c | |||
@@ -1,15 +1,11 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Sony MemoryStick Pro storage support | 3 | * Sony MemoryStick Pro storage support |
3 | * | 4 | * |
4 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> | 5 | * Copyright (C) 2007 Alex Dubov <oakad@yahoo.com> |
5 | * | 6 | * |
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * Special thanks to Carlos Corbacho for providing various MemoryStick cards | 7 | * Special thanks to Carlos Corbacho for providing various MemoryStick cards |
11 | * that made this driver possible. | 8 | * that made this driver possible. |
12 | * | ||
13 | */ | 9 | */ |
14 | 10 | ||
15 | #include <linux/blk-mq.h> | 11 | #include <linux/blk-mq.h> |