]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - drivers/hwmon/ds1722.c
net/designware: add error message on DMA reset timeout
[karo-tx-uboot.git] / drivers / hwmon / ds1722.c
index c19ee01393f087af4c294836d97d41bb911cee57..c46958846c7132c05f5af4d3630188768aedcc30 100644 (file)
@@ -1,9 +1,6 @@
-
 #include <common.h>
-
-#ifdef CONFIG_DS1722
-
-#include <ssi.h>
+#include <asm/ic/ssi.h>
+#include <ds1722.h>
 
 static void ds1722_select(int dev)
 {
@@ -138,5 +135,3 @@ int ds1722_probe(int dev)
        printf("%d.%d deg C\n\n", (char)(temp >> 8), temp & 0xff);
        return 0;
 }
-
-#endif