staging: vc04_services: bcm2835-camera: Drop MODULE_ALIAS
Drop MODULE_ALIAS in favour of MODULE_DEVICE_TABLE as the module alias should be picked from there. Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Link: https://lore.kernel.org/r/20231019090128.430297-4-umang.jain@ideasonboard.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
79ab0ca23a
commit
017b9ef371
@ -1995,9 +1995,16 @@ static void bcm2835_mmal_remove(struct vchiq_device *device)
|
||||
vchiq_mmal_finalise(instance);
|
||||
}
|
||||
|
||||
static const struct vchiq_device_id device_id_table[] = {
|
||||
{ .name = "bcm2835-camera" },
|
||||
{}
|
||||
};
|
||||
MODULE_DEVICE_TABLE(vchiq, device_id_table);
|
||||
|
||||
static struct vchiq_driver bcm2835_camera_driver = {
|
||||
.probe = bcm2835_mmal_probe,
|
||||
.remove = bcm2835_mmal_remove,
|
||||
.id_table = device_id_table,
|
||||
.driver = {
|
||||
.name = "bcm2835-camera",
|
||||
},
|
||||
@ -2008,4 +2015,3 @@ module_vchiq_driver(bcm2835_camera_driver)
|
||||
MODULE_DESCRIPTION("Broadcom 2835 MMAL video capture");
|
||||
MODULE_AUTHOR("Vincent Sanders");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_ALIAS("bcm2835-camera");
|
||||
|
Loading…
x
Reference in New Issue
Block a user