File: aravis-module.c

package info (click to toggle)
aravis 0.8.34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,028 kB
  • sloc: ansic: 38,758; xml: 1,384; python: 371; sh: 275; makefile: 60; javascript: 58; cpp: 6
file content (18 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <linux/module.h>

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Emmanuel Pacaud <emmanuel.pacaud@free.fr>");

int
init_module(void)
{
	printk (KERN_ALERT "aravis: loaded\n");

	return 0;
}

void
cleanup_module(void)
{
	printk (KERN_ALERT "aravis: unloaded\n");
}