ACPI: thinkpad-acpi: add development version tag
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / nonet.c
blob92e76640c7cd65146dd6aed382698174f7a0f2a2
1 /*
2 * net/nonet.c
4 * Dummy functions to allow us to configure network support entirely
5 * out of the kernel.
7 * Distributed under the terms of the GNU GPL version 2.
8 * Copyright (c) Matthew Wilcox 2003
9 */
11 #include <linux/module.h>
12 #include <linux/errno.h>
13 #include <linux/fs.h>
14 #include <linux/init.h>
15 #include <linux/kernel.h>
17 static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
19 return -ENXIO;
22 const struct file_operations bad_sock_fops = {
23 .owner = THIS_MODULE,
24 .open = sock_no_open,