| .. | .. |
|---|
| 1 | 1 | // SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note |
|---|
| 2 | 2 | /* |
|---|
| 3 | 3 | * |
|---|
| 4 | | - * (C) COPYRIGHT 2017, 2020-2021 ARM Limited. All rights reserved. |
|---|
| 4 | + * (C) COPYRIGHT 2017, 2020-2022 ARM Limited. All rights reserved. |
|---|
| 5 | 5 | * |
|---|
| 6 | 6 | * This program is free software and is provided to you under the terms of the |
|---|
| 7 | 7 | * GNU General Public License version 2 as published by the Free Software |
|---|
| .. | .. |
|---|
| 21 | 21 | |
|---|
| 22 | 22 | /* Kernel UTF test helpers */ |
|---|
| 23 | 23 | #include <kutf/kutf_helpers.h> |
|---|
| 24 | | - |
|---|
| 25 | 24 | #include <linux/err.h> |
|---|
| 26 | 25 | #include <linux/jiffies.h> |
|---|
| 27 | 26 | #include <linux/sched.h> |
|---|
| .. | .. |
|---|
| 128 | 127 | { |
|---|
| 129 | 128 | kutf_helper_input_enqueue(context, NULL, 0); |
|---|
| 130 | 129 | } |
|---|
| 130 | + |
|---|
| 131 | +void kutf_helper_ignore_dmesg(struct device *dev) |
|---|
| 132 | +{ |
|---|
| 133 | + dev_info(dev, "KUTF: Start ignoring dmesg warnings\n"); |
|---|
| 134 | +} |
|---|
| 135 | +EXPORT_SYMBOL(kutf_helper_ignore_dmesg); |
|---|
| 136 | + |
|---|
| 137 | +void kutf_helper_stop_ignoring_dmesg(struct device *dev) |
|---|
| 138 | +{ |
|---|
| 139 | + dev_info(dev, "KUTF: Stop ignoring dmesg warnings\n"); |
|---|
| 140 | +} |
|---|
| 141 | +EXPORT_SYMBOL(kutf_helper_stop_ignoring_dmesg); |
|---|