Hello community,
I want to use a driver for a SmartCam that was actually meant for linux kernel 2.6.34. The driver includes the code of a older version of the ISP and when the INIT of this module is called the ISP will be registered:
cam->omap3isp_driver.probe = isp_probe;
cam->omap3isp_driver.remove = isp_remove;
cam->omap3isp_driver.driver.name = "omap3isp";
plat_ret = platform_driver_register(&cam->omap3isp_driver);
The current ISP implementation does the registering on his own:
The problem is that I don't know how I can use that ISP struct in my module. Is there a method that I overlooked? Or what do I have to do to use the ISP?
Regards, Tom