libipa: camera_sensor_helper: Restore alphabetical order

The addition of the CameraSensorHelperImx327 class was not correctly
inserted in alphabetical sort order.

Move it to the correct location.

Fixes: 7d5b38e2ef ("libipa: camera_sensor_helper: Add IMX327 helper")
Reported-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
Benjamin Bara 2023-06-06 16:27:11 +02:00 committed by Laurent Pinchart
parent f65a73f3c8
commit 0a37c203da

View file

@ -428,11 +428,6 @@ public:
}; };
REGISTER_CAMERA_SENSOR_HELPER("imx290", CameraSensorHelperImx290) REGISTER_CAMERA_SENSOR_HELPER("imx290", CameraSensorHelperImx290)
class CameraSensorHelperImx327 : public CameraSensorHelperImx290
{
};
REGISTER_CAMERA_SENSOR_HELPER("imx327", CameraSensorHelperImx327)
class CameraSensorHelperImx296 : public CameraSensorHelper class CameraSensorHelperImx296 : public CameraSensorHelper
{ {
public: public:
@ -444,6 +439,11 @@ public:
}; };
REGISTER_CAMERA_SENSOR_HELPER("imx296", CameraSensorHelperImx296) REGISTER_CAMERA_SENSOR_HELPER("imx296", CameraSensorHelperImx296)
class CameraSensorHelperImx327 : public CameraSensorHelperImx290
{
};
REGISTER_CAMERA_SENSOR_HELPER("imx327", CameraSensorHelperImx327)
class CameraSensorHelperImx477 : public CameraSensorHelper class CameraSensorHelperImx477 : public CameraSensorHelper
{ {
public: public: