~n-muench/ubuntu/quantal/open-vm-tools/open-vm-tools.may2.sid-sync

« back to all changes in this revision

Viewing changes to modules/linux/shared/compat_ioport.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-30 09:48:43 UTC
  • mfrom: (1.1.5 upstream) (2.4.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090530094843-gdpza57r5iqsf124
Tags: 2009.05.22-167859-1
MergingĀ upstreamĀ versionĀ 2009.05.22-167859.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2003 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License as published by the
 
6
 * Free Software Foundation version 2 and no later version.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
10
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 
11
 * for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
15
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
16
 *
 
17
 *********************************************************/
 
18
 
 
19
#ifndef __COMPAT_IOPORT_H__
 
20
#   define __COMPAT_IOPORT_H__
 
21
 
 
22
 
 
23
#include <linux/ioport.h>
 
24
 
 
25
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 4, 0)
 
26
static inline void *
 
27
compat_request_region(unsigned long start, unsigned long len, const char *name)
 
28
{
 
29
   if (check_region(start, len)) {
 
30
      return NULL;
 
31
   }
 
32
   request_region(start, len, name);
 
33
   return (void*)1;
 
34
}
 
35
#else
 
36
#define compat_request_region(start, len, name) request_region(start, len, name)
 
37
#endif
 
38
 
 
39
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 3, 7)
 
40
/* mmap io support starts from 2.3.7, fail the call for kernel prior to that */
 
41
static inline void *
 
42
compat_request_mem_region(unsigned long start, unsigned long len, const char *name)
 
43
{
 
44
   return NULL;
 
45
}
 
46
 
 
47
static inline void
 
48
compat_release_mem_region(unsigned long start, unsigned long len)
 
49
{
 
50
   return;
 
51
}
 
52
#else
 
53
#define compat_request_mem_region(start, len, name) request_mem_region(start, len, name)
 
54
#define compat_release_mem_region(start, len)       release_mem_region(start, len)
 
55
#endif
 
56
 
 
57
/* these two macro defs are needed by compat_pci_request_region */
 
58
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 3, 15)
 
59
#   define IORESOURCE_IO    0x00000100
 
60
#   define IORESOURCE_MEM   0x00000200
 
61
#endif
 
62
 
 
63
#endif /* __COMPAT_IOPORT_H__ */