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

Subversion Repositories or1k

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

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
#include <malloc.h>     /* free */
23
#include <errno.h>      /* errno */
24
 
25
 
26
int generic_open(void * data)
27
{
28
        if(data)
29
        {
30
                return 0;
31
        }
32
        errno = ENODEV;
33
        return -1;
34
}
35
 
36
void generic_close(void * data)
37
{
38
        return;
39
}
40
 
41
void generic_free(void * data)
42
{
43
        if(data)
44
        {
45
                free(data);
46
        }
47
}
48
 
49
 
50
/*
51
 * Local variables:
52
 * c-file-style: "linux"
53
 * End:
54
 */

powered by: WebSVN 2.1.0

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