|
Linux Kernel
3.7.1
|
#include <linux/module.h>#include <linux/errno.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/i2c.h>#include <linux/i2c-algo-bit.h>#include <linux/io.h>#include <linux/scx200_gpio.h>Go to the source code of this file.
Macros | |
| #define | pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
Functions | |
| MODULE_AUTHOR ("Christer Weinigel <[email protected]>") | |
| MODULE_DESCRIPTION ("NatSemi SCx200 I2C Driver") | |
| MODULE_LICENSE ("GPL") | |
| module_param (scl, int, 0) | |
| MODULE_PARM_DESC (scl,"GPIO line for SCL") | |
| module_param (sda, int, 0) | |
| MODULE_PARM_DESC (sda,"GPIO line for SDA") | |
| module_init (scx200_i2c_init) | |
| module_exit (scx200_i2c_cleanup) | |
Definition at line 24 of file scx200_i2c.c.
| MODULE_AUTHOR | ( | "Christer Weinigel <[email protected]>" | ) |
| MODULE_DESCRIPTION | ( | "NatSemi SCx200 I2C Driver" | ) |
| module_exit | ( | scx200_i2c_cleanup | ) |
| module_init | ( | scx200_i2c_init | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
| module_param | ( | scl | , |
| int | , | ||
| 0 | |||
| ) |
1.8.2