u32 max_cnt;
};
-static const struct s3c2410_wdt_variant drv_data_s3c2410 = {
- .quirks = 0
-};
-
-#ifdef CONFIG_OF
static const struct s3c2410_wdt_variant drv_data_s3c6410 = {
.quirks = QUIRK_HAS_WTCLRINT_REG,
};
static const struct of_device_id s3c2410_wdt_match[] = {
{ .compatible = "google,gs101-wdt",
.data = &drv_data_gs101_cl0 },
- { .compatible = "samsung,s3c2410-wdt",
- .data = &drv_data_s3c2410 },
{ .compatible = "samsung,s3c6410-wdt",
.data = &drv_data_s3c6410 },
{ .compatible = "samsung,exynos5250-wdt",
{},
};
MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
-#endif
-
-static const struct platform_device_id s3c2410_wdt_ids[] = {
- {
- .name = "s3c2410-wdt",
- .driver_data = (unsigned long)&drv_data_s3c2410,
- },
- {}
-};
-MODULE_DEVICE_TABLE(platform, s3c2410_wdt_ids);
/* functions */
platform_get_device_id(pdev)->driver_data;
}
-#ifdef CONFIG_OF
/* Choose Exynos850/ExynosAutov9 driver data w.r.t. cluster index */
if (variant == &drv_data_exynos850_cl0 ||
variant == &drv_data_exynosautov9_cl0 ||
return dev_err_probe(dev, -EINVAL, "wrong cluster index: %u\n", index);
}
}
-#endif
wdt->drv_data = variant;
return 0;
static struct platform_driver s3c2410wdt_driver = {
.probe = s3c2410wdt_probe,
.shutdown = s3c2410wdt_shutdown,
- .id_table = s3c2410_wdt_ids,
.driver = {
.name = "s3c2410-wdt",
.pm = pm_sleep_ptr(&s3c2410wdt_pm_ops),
- .of_match_table = of_match_ptr(s3c2410_wdt_match),
+ .of_match_table = s3c2410_wdt_match,
},
};