aboutsummaryrefslogtreecommitdiff
path: root/drivers/gator/gator_stub.c
blob: aec16e4652c4daf7e7df24fa4bf636b56e9f7d43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * Copyright (C) Linaro Limited 2014.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#include <linux/module.h>

static int __init gator_module_init(void)
{
	return 0;
}

static void __exit gator_module_exit(void)
{
}

module_init(gator_module_init);
module_exit(gator_module_exit);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Dummy stub for Gator system profiler");
MODULE_VERSION("0");