Linux Kernel
3.7.1
|
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/types.h>
#include <linux/platform_device.h>
#include <linux/mutex.h>
#include <linux/idr.h>
#include <linux/gfp.h>
#include "../w1.h"
#include "../w1_int.h"
#include "../w1_family.h"
#include "w1_ds2760.h"
Go to the source code of this file.
Functions | |
int | w1_ds2760_read (struct device *dev, char *buf, int addr, size_t count) |
int | w1_ds2760_write (struct device *dev, char *buf, int addr, size_t count) |
int | w1_ds2760_store_eeprom (struct device *dev, int addr) |
int | w1_ds2760_recall_eeprom (struct device *dev, int addr) |
EXPORT_SYMBOL (w1_ds2760_read) | |
EXPORT_SYMBOL (w1_ds2760_write) | |
EXPORT_SYMBOL (w1_ds2760_store_eeprom) | |
EXPORT_SYMBOL (w1_ds2760_recall_eeprom) | |
module_init (w1_ds2760_init) | |
module_exit (w1_ds2760_exit) | |
MODULE_LICENSE ("GPL") | |
MODULE_AUTHOR ("Szabolcs Gyurko <[email protected]>") | |
MODULE_DESCRIPTION ("1-wire Driver Dallas 2760 battery monitor chip") | |
EXPORT_SYMBOL | ( | w1_ds2760_read | ) |
EXPORT_SYMBOL | ( | w1_ds2760_write | ) |
EXPORT_SYMBOL | ( | w1_ds2760_store_eeprom | ) |
EXPORT_SYMBOL | ( | w1_ds2760_recall_eeprom | ) |
MODULE_AUTHOR | ( | "Szabolcs Gyurko <[email protected]>" | ) |
MODULE_DESCRIPTION | ( | "1-wire Driver Dallas 2760 battery monitor chip" | ) |
module_exit | ( | w1_ds2760_exit | ) |
module_init | ( | w1_ds2760_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |
Definition at line 62 of file w1_ds2760.c.
Definition at line 95 of file w1_ds2760.c.
Definition at line 90 of file w1_ds2760.c.