--- /dev/null
+* NXP PNX watchdog timer
+
+Required properties:
+- compatible: must be "nxp,pnx4008-wdt"
+- reg: physical base address of the controller and length of memory mapped
+  region.
+
+Example:
+
+       watchdog@4003C000 {
+               compatible = "nxp,pnx4008-wdt";
+               reg = <0x4003C000 0x1000>;
+       };
 
 #include <linux/io.h>
 #include <linux/slab.h>
 #include <linux/err.h>
+#include <linux/of.h>
 #include <mach/hardware.h>
 
 /* WatchDog Timer - Chapter 23 Page 207 */
        return 0;
 }
 
+#ifdef CONFIG_OF
+static const struct of_device_id pnx4008_wdt_match[] = {
+       { .compatible = "nxp,pnx4008-wdt" },
+       { }
+};
+MODULE_DEVICE_TABLE(of, pnx4008_wdt_match);
+#endif
+
 static struct platform_driver platform_wdt_driver = {
        .driver = {
                .name = "pnx4008-watchdog",
                .owner  = THIS_MODULE,
+               .of_match_table = of_match_ptr(pnx4008_wdt_match),
        },
        .probe = pnx4008_wdt_probe,
        .remove = __devexit_p(pnx4008_wdt_remove),