pmbus.c (866cf12a0eab65f94e40608bdd21ca8dea4d0ac2) | pmbus.c (c3ff9a674c2313d4f28e38d384b18b561b313eb7) |
---|---|
1/* 2 * Hardware monitoring driver for PMBus devices 3 * 4 * Copyright (c) 2010, 2011 Ericsson AB. 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; either version 2 of the License, or --- 190 unchanged lines hidden (view full) --- 199 * Use driver_data to set the number of pages supported by the chip. 200 */ 201static const struct i2c_device_id pmbus_id[] = { 202 {"adp4000", 1}, 203 {"bmr450", 1}, 204 {"bmr451", 1}, 205 {"bmr453", 1}, 206 {"bmr454", 1}, | 1/* 2 * Hardware monitoring driver for PMBus devices 3 * 4 * Copyright (c) 2010, 2011 Ericsson AB. 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; either version 2 of the License, or --- 190 unchanged lines hidden (view full) --- 199 * Use driver_data to set the number of pages supported by the chip. 200 */ 201static const struct i2c_device_id pmbus_id[] = { 202 {"adp4000", 1}, 203 {"bmr450", 1}, 204 {"bmr451", 1}, 205 {"bmr453", 1}, 206 {"bmr454", 1}, |
207 {"ltc2978", 8}, | |
208 {"ncp4200", 1}, 209 {"ncp4208", 1}, 210 {"pmbus", 0}, 211 {} 212}; 213 214MODULE_DEVICE_TABLE(i2c, pmbus_id); 215 --- 25 unchanged lines hidden --- | 207 {"ncp4200", 1}, 208 {"ncp4208", 1}, 209 {"pmbus", 0}, 210 {} 211}; 212 213MODULE_DEVICE_TABLE(i2c, pmbus_id); 214 --- 25 unchanged lines hidden --- |