i2c-amd8111.c (0b28330e39bbe0ffee4c56b09fc415fcec595ea3) | i2c-amd8111.c (2178218027e4da0608219fae1d02e5c88f4e560d) |
---|---|
1/* 2 * SMBus 2.0 driver for AMD-8111 IO-Hub. 3 * 4 * Copyright (c) 2002 Vojtech Pavlik 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation version 2. --- 4 unchanged lines hidden (view full) --- 13#include <linux/kernel.h> 14#include <linux/stddef.h> 15#include <linux/ioport.h> 16#include <linux/init.h> 17#include <linux/i2c.h> 18#include <linux/delay.h> 19#include <linux/acpi.h> 20#include <linux/slab.h> | 1/* 2 * SMBus 2.0 driver for AMD-8111 IO-Hub. 3 * 4 * Copyright (c) 2002 Vojtech Pavlik 5 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation version 2. --- 4 unchanged lines hidden (view full) --- 13#include <linux/kernel.h> 14#include <linux/stddef.h> 15#include <linux/ioport.h> 16#include <linux/init.h> 17#include <linux/i2c.h> 18#include <linux/delay.h> 19#include <linux/acpi.h> 20#include <linux/slab.h> |
21#include <asm/io.h> | 21#include <linux/io.h> |
22 23MODULE_LICENSE("GPL"); 24MODULE_AUTHOR ("Vojtech Pavlik <vojtech@suse.cz>"); 25MODULE_DESCRIPTION("AMD8111 SMBus 2.0 driver"); 26 27struct amd_smbus { 28 struct pci_dev *dev; 29 struct i2c_adapter adapter; --- 413 unchanged lines hidden --- | 22 23MODULE_LICENSE("GPL"); 24MODULE_AUTHOR ("Vojtech Pavlik <vojtech@suse.cz>"); 25MODULE_DESCRIPTION("AMD8111 SMBus 2.0 driver"); 26 27struct amd_smbus { 28 struct pci_dev *dev; 29 struct i2c_adapter adapter; --- 413 unchanged lines hidden --- |