sis5595.c (4064e0ea3c0e9427e6c22392c4b69b4bfa1b7125) sis5595.c (7c81c60f3789a082e141d7a013392af5f78db16a)
1/*
2 * sis5595.c - Part of lm_sensors, Linux kernel modules
3 * for hardware monitoring
4 *
5 * Copyright (C) 1998 - 2001 Frodo Looijaard <frodol@dds.nl>,
6 * Kyösti Mälkki <kmalkki@cc.hut.fi>, and
7 * Mark D. Studebaker <mdsxyz123@yahoo.com>
8 * Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
1/*
2 * sis5595.c - Part of lm_sensors, Linux kernel modules
3 * for hardware monitoring
4 *
5 * Copyright (C) 1998 - 2001 Frodo Looijaard <frodol@dds.nl>,
6 * Kyösti Mälkki <kmalkki@cc.hut.fi>, and
7 * Mark D. Studebaker <mdsxyz123@yahoo.com>
8 * Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
9 * the help of Jean Delvare <khali@linux-fr.org>
9 * the help of Jean Delvare <jdelvare@suse.de>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of

--- 731 unchanged lines hidden (view full) ---

749 data->valid = 1;
750 }
751
752 mutex_unlock(&data->update_lock);
753
754 return data;
755}
756
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of

--- 731 unchanged lines hidden (view full) ---

749 data->valid = 1;
750 }
751
752 mutex_unlock(&data->update_lock);
753
754 return data;
755}
756
757static const struct pci_device_id sis5595_pci_ids[] = {
757static DEFINE_PCI_DEVICE_TABLE(sis5595_pci_ids) = {
758 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
759 { 0, }
760};
761
762MODULE_DEVICE_TABLE(pci, sis5595_pci_ids);
763
764static int blacklist[] = {
765 PCI_DEVICE_ID_SI_540,

--- 168 unchanged lines hidden ---
758 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
759 { 0, }
760};
761
762MODULE_DEVICE_TABLE(pci, sis5595_pci_ids);
763
764static int blacklist[] = {
765 PCI_DEVICE_ID_SI_540,

--- 168 unchanged lines hidden ---