Lines Matching refs:plat_dev
55 struct platform_device *plat_dev = to_platform_device(dev); in test_rtc_proc() local
58 seq_printf(seq, "id\t\t: %d\n", plat_dev->id); in test_rtc_proc()
87 struct platform_device *plat_dev = to_platform_device(dev); in test_irq_store() local
88 struct rtc_device *rtc = platform_get_drvdata(plat_dev); in test_irq_store()
109 static int test_probe(struct platform_device *plat_dev) in test_probe() argument
119 rtc = devm_rtc_device_register(&plat_dev->dev, "test", in test_probe()
125 err = device_create_file(&plat_dev->dev, &dev_attr_irq); in test_probe()
127 dev_err(&plat_dev->dev, "Unable to create sysfs entry: %s\n", in test_probe()
130 platform_set_drvdata(plat_dev, rtc); in test_probe()
135 static int test_remove(struct platform_device *plat_dev) in test_remove() argument
137 device_remove_file(&plat_dev->dev, &dev_attr_irq); in test_remove()