| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
|---|
| 1 | 2 | /** |
|---|
| 2 | 3 | * Copyright (c) ???? Jochen Schäuble <psionic@psionic.de> |
|---|
| 3 | 4 | * Copyright (c) 2003-2004 Joern Engel <joern@wh.fh-wedel.de> |
|---|
| .. | .. |
|---|
| 147 | 148 | switch (token[len - 2]) { |
|---|
| 148 | 149 | case 'G': |
|---|
| 149 | 150 | shift += 10; |
|---|
| 151 | + fallthrough; |
|---|
| 150 | 152 | case 'M': |
|---|
| 151 | 153 | shift += 10; |
|---|
| 154 | + fallthrough; |
|---|
| 152 | 155 | case 'k': |
|---|
| 153 | 156 | shift += 10; |
|---|
| 154 | 157 | token[len - 2] = 0; |
|---|
| .. | .. |
|---|
| 294 | 297 | #endif |
|---|
| 295 | 298 | } |
|---|
| 296 | 299 | |
|---|
| 297 | | -module_param_call(phram, phram_param_call, NULL, NULL, 000); |
|---|
| 300 | +module_param_call(phram, phram_param_call, NULL, NULL, 0200); |
|---|
| 298 | 301 | MODULE_PARM_DESC(phram, "Memory region to map. \"phram=<name>,<start>,<length>\""); |
|---|
| 299 | 302 | |
|---|
| 300 | 303 | |
|---|