swh:1:snp:173f8deb0c56c557784b4fd217e7608ac6197844
Raw File
Tip revision: 120bda20c6f64b32e8bfbdd7b34feafaa5f5332e authored by Linus Torvalds on 06 July 2006, 04:09:49 UTC
Linux 2.6.18-rc1
Tip revision: 120bda2
i2c_ec.h
/*
 * SMBus driver for ACPI Embedded Controller ($Revision: 1.2 $)
 *
 * Copyright (c) 2002, 2005 Ducrot Bruno
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation version 2.
 */

struct acpi_ec_smbus {
	struct i2c_adapter adapter;
	union acpi_ec *ec;
	int base;
	int alert;
};

struct acpi_ec_hc {
	acpi_handle handle;
	struct acpi_ec_smbus *smbus;
};

struct acpi_ec_hc *acpi_get_ec_hc(struct acpi_device *device);
back to top