Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Benjamin Herrenschmidt | 04ae900 | 2013-06-09 17:00:42 +1000 | [diff] [blame] | 2 | #include <linux/types.h> |
3 | #include <linux/errno.h> | ||||
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 4 | #include <linux/uaccess.h> |
Benjamin Herrenschmidt | 04ae900 | 2013-06-09 17:00:42 +1000 | [diff] [blame] | 5 | |
6 | int fre(void *frD, void *frB) | ||||
7 | { | ||||
8 | #ifdef DEBUG | ||||
9 | printk("%s: %p %p\n", __func__, frD, frB); | ||||
10 | #endif | ||||
11 | return -ENOSYS; | ||||
12 | } |