Lines Matching refs:odev
537 static int platinumfb_probe(struct platform_device* odev) in platinumfb_probe() argument
539 struct device_node *dp = odev->dev.of_node; in platinumfb_probe()
545 dev_info(&odev->dev, "Found Apple Platinum video hardware\n"); in platinumfb_probe()
547 info = framebuffer_alloc(sizeof(*pinfo), &odev->dev); in platinumfb_probe()
549 dev_err(&odev->dev, "Failed to allocate fbdev !\n"); in platinumfb_probe()
556 dev_err(&odev->dev, "Can't get resources\n"); in platinumfb_probe()
560 dev_dbg(&odev->dev, " registers : 0x%llx...0x%llx\n", in platinumfb_probe()
563 dev_dbg(&odev->dev, " framebuffer: 0x%llx...0x%llx\n", in platinumfb_probe()
635 dev_set_drvdata(&odev->dev, info); in platinumfb_probe()
648 static int platinumfb_remove(struct platform_device* odev) in platinumfb_remove() argument
650 struct fb_info *info = dev_get_drvdata(&odev->dev); in platinumfb_remove()