10 lines
202 B
C
10 lines
202 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef AC71_PR_H
|
|
#define AC71_PR_H
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME "/" KBUILD_BASENAME ": %s: " fmt, __func__
|
|
|
|
#include <linux/printk.h>
|
|
|
|
#endif /* AC71_PR_H */
|