.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * omap_cf.c -- OMAP 16xx CompactFlash controller driver |
---|
3 | 4 | * |
---|
4 | 5 | * 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. |
---|
10 | 6 | */ |
---|
11 | 7 | |
---|
12 | 8 | #include <linux/module.h> |
---|
.. | .. |
---|
22 | 18 | |
---|
23 | 19 | #include <mach/hardware.h> |
---|
24 | 20 | #include <asm/io.h> |
---|
25 | | -#include <asm/sizes.h> |
---|
| 21 | +#include <linux/sizes.h> |
---|
26 | 22 | |
---|
27 | 23 | #include <mach/mux.h> |
---|
28 | 24 | #include <mach/tc.h> |
---|
.. | .. |
---|
333 | 329 | |
---|
334 | 330 | static struct platform_driver omap_cf_driver = { |
---|
335 | 331 | .driver = { |
---|
336 | | - .name = (char *) driver_name, |
---|
| 332 | + .name = driver_name, |
---|
337 | 333 | }, |
---|
338 | 334 | .remove = __exit_p(omap_cf_remove), |
---|
339 | 335 | }; |
---|