Before bridge driver use CIO2_NUM_PORTS as the maximum supported CSI2 port
number. Current bridge driver is moved out of ipu3, so define a new macro
in ipu bridge for all IPUs instead of including CIO2 definition.
This patch also removes the ipu3-cio2.h inclusion in ipu-bridge.h.
Signed-off-by: Bingbu Cao <bingbu.cao@intel.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
                if (!adev->status.enabled)
                        continue;
 
-               if (bridge->n_sensors >= CIO2_NUM_PORTS) {
+               if (bridge->n_sensors >= IPU_MAX_PORTS) {
                        acpi_dev_put(adev);
                        dev_err(&ipu->dev, "Exceeded available IPU ports\n");
                        return -EINVAL;
 
 #include <linux/property.h>
 #include <linux/types.h>
 
-#include "ipu3/ipu3-cio2.h"
-
 struct i2c_client;
 
 #define IPU_HID                                "INT343E"
 #define IPU_MAX_LANES                          4
+#define IPU_MAX_PORTS                          4
 #define MAX_NUM_LINK_FREQS                     3
 
 /* Values are educated guesses as we don't have a spec */
        struct software_node ipu_hid_node;
        u32 data_lanes[4];
        unsigned int n_sensors;
-       struct ipu_sensor sensors[CIO2_NUM_PORTS];
+       struct ipu_sensor sensors[IPU_MAX_PORTS];
 };
 
 #if IS_ENABLED(CONFIG_IPU_BRIDGE)