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