VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/installer/test_drm.c@ 32627

Last change on this file since 32627 was 31661, checked in by vboxsync, 15 years ago

Additions header fixes

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 912 bytes
Line 
1/*
2 * VirtualBox Guest Additions installer test module for Linux
3 *
4 * Copyright (C) 2006-2007 Oracle Corporation
5 *
6 * This file is part of VirtualBox Open Source Edition (OSE), as
7 * available from http://www.virtualbox.org. This file is free software;
8 * you can redistribute it and/or modify it under the terms of the GNU
9 * General Public License (GPL) as published by the Free Software
10 * Foundation, in version 2 as it comes in the "COPYING" file of the
11 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
12 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
13 */
14
15#include <linux/init.h>
16#include <linux/module.h>
17#include "drm/drmP.h"
18
19
20MODULE_DESCRIPTION("VirtualBox Guest Additions drm test module");
21MODULE_AUTHOR("Oracle Corporation");
22MODULE_LICENSE("GPL");
23
24static int init(void)
25{
26 return 0;
27}
28
29static void fini(void) {}
30
31module_init(init);
32module_exit(fini);
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette