| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Copyright (c) 2011 Zhang, Keguang <keguang.zhang@gmail.com> |
|---|
| 3 | | - * |
|---|
| 4 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 5 | | - * under the terms of the GNU General Public License as published by the |
|---|
| 6 | | - * Free Software Foundation; either version 2 of the License, or (at your |
|---|
| 7 | | - * option) any later version. |
|---|
| 8 | 4 | */ |
|---|
| 9 | 5 | |
|---|
| 10 | 6 | #include <linux/io.h> |
|---|
| .. | .. |
|---|
| 41 | 37 | |
|---|
| 42 | 38 | static int __init ls1x_reboot_setup(void) |
|---|
| 43 | 39 | { |
|---|
| 44 | | - wdt_reg_base = ioremap_nocache(LS1X_WDT_BASE, (SZ_4 + SZ_8)); |
|---|
| 40 | + wdt_reg_base = ioremap(LS1X_WDT_BASE, (SZ_4 + SZ_8)); |
|---|
| 45 | 41 | if (!wdt_reg_base) |
|---|
| 46 | 42 | panic("Failed to remap watchdog registers"); |
|---|
| 47 | 43 | |
|---|