summaryrefslogtreecommitdiffstats
path: root/skull/skull_clean.c
blob: 9d1e789c5b4258bdf38a51820db1708a009f2bf1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <linux/config.h>
#include <linux/module.h>
#include <linux/version.h>

#include <linux/ioport.h>

void skull_release(unsigned int port, unsigned int range)
{
    release_region(port,range);
}

void skull_cleanup(void)
{
    /* should put real values here ... */
    /* skull_release(0,0); */
}

module_exit(skull_cleanup);