hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/drivers/pcmcia/omap_cf.c
....@@ -1,12 +1,8 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * omap_cf.c -- OMAP 16xx CompactFlash controller driver
34 *
45 * Copyright (c) 2005 David Brownell
5
- *
6
- * This program is free software; you can redistribute it and/or modify
7
- * it under the terms of the GNU General Public License as published by
8
- * the Free Software Foundation; either version 2 of the License, or
9
- * (at your option) any later version.
106 */
117
128 #include <linux/module.h>
....@@ -22,7 +18,7 @@
2218
2319 #include <mach/hardware.h>
2420 #include <asm/io.h>
25
-#include <asm/sizes.h>
21
+#include <linux/sizes.h>
2622
2723 #include <mach/mux.h>
2824 #include <mach/tc.h>
....@@ -333,7 +329,7 @@
333329
334330 static struct platform_driver omap_cf_driver = {
335331 .driver = {
336
- .name = (char *) driver_name,
332
+ .name = driver_name,
337333 },
338334 .remove = __exit_p(omap_cf_remove),
339335 };