ftsteutates.c (7576750f036b5ec913aac2a165ce75ab3b7beee3) | ftsteutates.c (1dad2e958a0b0e402adfd1546d15e7b628ac2c5a) |
---|---|
1/* 2 * Support for the FTS Systemmonitoring Chip "Teutates" 3 * 4 * Copyright (C) 2016 Fujitsu Technology Solutions GmbH, 5 * Thilo Cestonaro <thilo.cestonaro@ts.fujitsu.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 46 unchanged lines hidden (view full) --- 55#define FTS_WATCHDOG_CONTROL 0x5081 56 57#define FTS_NO_FAN_SENSORS 0x08 58#define FTS_NO_TEMP_SENSORS 0x10 59#define FTS_NO_VOLT_SENSORS 0x04 60 61static const unsigned short normal_i2c[] = { 0x73, I2C_CLIENT_END }; 62 | 1/* 2 * Support for the FTS Systemmonitoring Chip "Teutates" 3 * 4 * Copyright (C) 2016 Fujitsu Technology Solutions GmbH, 5 * Thilo Cestonaro <thilo.cestonaro@ts.fujitsu.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 46 unchanged lines hidden (view full) --- 55#define FTS_WATCHDOG_CONTROL 0x5081 56 57#define FTS_NO_FAN_SENSORS 0x08 58#define FTS_NO_TEMP_SENSORS 0x10 59#define FTS_NO_VOLT_SENSORS 0x04 60 61static const unsigned short normal_i2c[] = { 0x73, I2C_CLIENT_END }; 62 |
63static struct i2c_device_id fts_id[] = { | 63static const struct i2c_device_id fts_id[] = { |
64 { "ftsteutates", 0 }, 65 { } 66}; 67MODULE_DEVICE_TABLE(i2c, fts_id); 68 69enum WATCHDOG_RESOLUTION { 70 seconds = 1, 71 minutes = 60 --- 795 unchanged lines hidden --- | 64 { "ftsteutates", 0 }, 65 { } 66}; 67MODULE_DEVICE_TABLE(i2c, fts_id); 68 69enum WATCHDOG_RESOLUTION { 70 seconds = 1, 71 minutes = 60 --- 795 unchanged lines hidden --- |