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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_47/] [or1ksim/] [peripheral/] [channels/] [generic.c] - Blame information for rev 1419

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1070 rprescott
/* generic.c -- Definition of generic functions for peripheral to
2
 * communicate with host
3
 
4
   Copyright (C) 2002 Richard Prescott <rip@step.polymtl.ca>
5
 
6
This file is part of OpenRISC 1000 Architectural Simulator.
7
 
8
This program is free software; you can redistribute it and/or modify
9
it under the terms of the GNU General Public License as published by
10
the Free Software Foundation; either version 2 of the License, or
11
(at your option) any later version.
12
 
13
This program is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
GNU General Public License for more details.
17
 
18
You should have received a copy of the GNU General Public License
19
along with this program; if not, write to the Free Software
20
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21
 
22 1244 hpanther
#if HAVE_CONFIG_H
23
#include <config.h>
24
#endif
25
 
26
#if HAVE_MALLOC_H
27
#include <malloc.h>     /* calloc, free */
28
#endif
29
 
30 1070 rprescott
#include <errno.h>      /* errno */
31
 
32
 
33
int generic_open(void * data)
34
{
35
        if(data)
36
        {
37
                return 0;
38
        }
39
        errno = ENODEV;
40
        return -1;
41
}
42
 
43
void generic_close(void * data)
44
{
45
        return;
46
}
47
 
48
void generic_free(void * data)
49
{
50
        if(data)
51
        {
52
                free(data);
53
        }
54
}
55
 
56
 
57
/*
58
 * Local variables:
59
 * c-file-style: "linux"
60
 * End:
61
 */

powered by: WebSVN 2.1.0

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