OpenCores
URL https://opencores.org/ocsvn/or1k_soc_on_altera_embedded_dev_kit/or1k_soc_on_altera_embedded_dev_kit/trunk

Subversion Repositories or1k_soc_on_altera_embedded_dev_kit

[/] [or1k_soc_on_altera_embedded_dev_kit/] [trunk/] [linux-2.6/] [linux-2.6.24/] [net/] [nonet.c] - Blame information for rev 3

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 3 xianfeng
/*
2
 * net/nonet.c
3
 *
4
 * Dummy functions to allow us to configure network support entirely
5
 * out of the kernel.
6
 *
7
 * Distributed under the terms of the GNU GPL version 2.
8
 * Copyright (c) Matthew Wilcox 2003
9
 */
10
 
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>
16
 
17
static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
18
{
19
        return -ENXIO;
20
}
21
 
22
const struct file_operations bad_sock_fops = {
23
        .owner = THIS_MODULE,
24
        .open = sock_no_open,
25
};

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.