Drop three-wire serial (TWS) support
[platform/kernel/u-boot.git] / drivers / hwmon / ds1722.c
index c19ee01..c469588 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