.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Intel CE4100 platform specific setup code |
---|
3 | 4 | * |
---|
4 | 5 | * (C) Copyright 2010 Intel Corporation |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or |
---|
7 | | - * modify it under the terms of the GNU General Public License |
---|
8 | | - * as published by the Free Software Foundation; version 2 |
---|
9 | | - * of the License. |
---|
10 | 6 | */ |
---|
11 | 7 | #include <linux/init.h> |
---|
12 | 8 | #include <linux/kernel.h> |
---|
.. | .. |
---|
84 | 80 | } |
---|
85 | 81 | |
---|
86 | 82 | static void ce4100_serial_fixup(int port, struct uart_port *up, |
---|
87 | | - u32 *capabilites) |
---|
| 83 | + u32 *capabilities) |
---|
88 | 84 | { |
---|
89 | 85 | #ifdef CONFIG_EARLY_PRINTK |
---|
90 | 86 | /* |
---|
.. | .. |
---|
111 | 107 | up->serial_in = ce4100_mem_serial_in; |
---|
112 | 108 | up->serial_out = ce4100_mem_serial_out; |
---|
113 | 109 | |
---|
114 | | - *capabilites |= (1 << 12); |
---|
| 110 | + *capabilities |= (1 << 12); |
---|
115 | 111 | } |
---|
116 | 112 | |
---|
117 | 113 | static __init void sdv_serial_fixup(void) |
---|