~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/vmhgfs/compat_module.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) 2007 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
 
/*
20
 
 * compat_module.h --
21
 
 */
22
 
 
23
 
#ifndef __COMPAT_MODULE_H__
24
 
#   define __COMPAT_MODULE_H__
25
 
 
26
 
 
27
 
#include <linux/module.h>
28
 
 
29
 
 
30
 
/*
31
 
 * Modules wishing to use the GPL license are required to include a
32
 
 * MODULE_LICENSE definition in their module source as of 2.4.10.
33
 
 */
34
 
#ifndef MODULE_LICENSE
35
 
#define MODULE_LICENSE(license)
36
 
#endif
37
 
 
38
 
/*
39
 
 * To make use of our own home-brewed MODULE_INFO, we need macros to
40
 
 * concatenate two expressions to "__mod_", and and to convert an
41
 
 * expression into a string. I'm sure we've got these in our codebase,
42
 
 * but I'd rather not introduce such a dependency in a compat header.
43
 
 */
44
 
#ifndef __module_cat
45
 
#define __module_cat_1(a, b) __mod_ ## a ## b
46
 
#define __module_cat(a, b) __module_cat_1(a, b)
47
 
#endif
48
 
 
49
 
#ifndef __stringify
50
 
#define __stringify_1(x) #x
51
 
#define __stringify(x) __stringify_1(x)
52
 
#endif
53
 
 
54
 
/*
55
 
 * MODULE_INFO was born in 2.5.69.
56
 
 */
57
 
#ifndef MODULE_INFO
58
 
#define MODULE_INFO(tag, info)                                                \
59
 
static const char __module_cat(tag, __LINE__)[]                               \
60
 
  __attribute__((section(".modinfo"), unused)) = __stringify(tag) "=" info
61
 
#endif
62
 
 
63
 
/*
64
 
 * MODULE_VERSION was born in 2.6.4. The earlier form appends a long "\0xxx"
65
 
 * string to the module's version, but that was removed in 2.6.10, so we'll
66
 
 * ignore it in our wrapper.
67
 
 */
68
 
#ifndef MODULE_VERSION
69
 
#define MODULE_VERSION(_version) MODULE_INFO(version, _version)
70
 
#endif
71
 
 
72
 
#endif /* __COMPAT_MODULE_H__ */