| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Common PowerQUICC II code. |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 7 | 8 | * Based on code by Vitaly Bordug <vbordug@ru.mvista.com> |
|---|
| 8 | 9 | * pq2_restart fix by Wade Farnsworth <wfarnsworth@mvista.com> |
|---|
| 9 | 10 | * Copyright (c) 2006 MontaVista Software, Inc. |
|---|
| 10 | | - * |
|---|
| 11 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 12 | | - * under the terms of the GNU General Public License as published by the |
|---|
| 13 | | - * Free Software Foundation; either version 2 of the License, or (at your |
|---|
| 14 | | - * option) any later version. |
|---|
| 15 | 11 | */ |
|---|
| 12 | + |
|---|
| 13 | +#include <linux/kprobes.h> |
|---|
| 16 | 14 | |
|---|
| 17 | 15 | #include <asm/cpm2.h> |
|---|
| 18 | 16 | #include <asm/io.h> |
|---|
| .. | .. |
|---|
| 33 | 31 | |
|---|
| 34 | 32 | panic("Restart failed\n"); |
|---|
| 35 | 33 | } |
|---|
| 34 | +NOKPROBE_SYMBOL(pq2_restart) |
|---|
| 36 | 35 | |
|---|
| 37 | 36 | #ifdef CONFIG_PCI |
|---|
| 38 | 37 | static int pq2_pci_exclude_device(struct pci_controller *hose, |
|---|