ibmpex.c (27eb2c4b3d3e13f376a359e293c212a2e9407af5) ibmpex.c (5407e051354bdd943f6ea66562112c9868d64cf5)
1/*
2 * A hwmon driver for the IBM PowerExecutive temperature/power sensors
3 * Copyright (C) 2007 IBM
4 *
1/*
2 * A hwmon driver for the IBM PowerExecutive temperature/power sensors
3 * Copyright (C) 2007 IBM
4 *
5 * Author: Darrick J. Wong <djwong@us.ibm.com>
5 * Author: Darrick J. Wong <darrick.wong@oracle.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
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of

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

601{
602 struct ibmpex_bmc_data *p, *next;
603
604 ipmi_smi_watcher_unregister(&driver_data.bmc_events);
605 list_for_each_entry_safe(p, next, &driver_data.bmc_data, list)
606 ibmpex_bmc_delete(p);
607}
608
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
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of

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

601{
602 struct ibmpex_bmc_data *p, *next;
603
604 ipmi_smi_watcher_unregister(&driver_data.bmc_events);
605 list_for_each_entry_safe(p, next, &driver_data.bmc_data, list)
606 ibmpex_bmc_delete(p);
607}
608
609MODULE_AUTHOR("Darrick J. Wong <djwong@us.ibm.com>");
609MODULE_AUTHOR("Darrick J. Wong <darrick.wong@oracle.com>");
610MODULE_DESCRIPTION("IBM PowerExecutive power/temperature sensor driver");
611MODULE_LICENSE("GPL");
612
613module_init(ibmpex_init);
614module_exit(ibmpex_exit);
615
616MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3350-*");
617MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3550-*");
618MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3650-*");
619MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3655-*");
620MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3755-*");
610MODULE_DESCRIPTION("IBM PowerExecutive power/temperature sensor driver");
611MODULE_LICENSE("GPL");
612
613module_init(ibmpex_init);
614module_exit(ibmpex_exit);
615
616MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3350-*");
617MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3550-*");
618MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3650-*");
619MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3655-*");
620MODULE_ALIAS("dmi:bvnIBM:*:pnIBMSystemx3755-*");