[PATCH v7 11/12] hwmon: Add PECI dimmtemp driver
From: robh+dt@kernel.org (Rob Herring)
Date: 2018-07-30 22:06:14
Also in:
linux-aspeed, linux-devicetree, openbmc
From: robh+dt@kernel.org (Rob Herring)
Date: 2018-07-30 22:06:14
Also in:
linux-aspeed, linux-devicetree, openbmc
On Mon, Jul 23, 2018 at 3:49 PM Jae Hyun Yoo [off-list ref] wrote:
This commit adds PECI dimmtemp hwmon driver.
+#if IS_ENABLED(CONFIG_OF)
+static const struct of_device_id peci_dimmtemp_of_table[] = {
+ { .compatible = "intel,peci-dimmtemp" },
+ { }
+};
+MODULE_DEVICE_TABLE(of, peci_dimmtemp_of_table);
+#endifThis should be removed. Same for cpu temp driver I'm guessing. Rob