list_for_each_entry(asd, ¬ifier->waiting, list) {
                /* bus_type has been verified valid before */
                switch (asd->match.type) {
-               case V4L2_ASYNC_MATCH_I2C:
+               case V4L2_ASYNC_MATCH_TYPE_I2C:
                        match = match_i2c;
                        break;
-               case V4L2_ASYNC_MATCH_FWNODE:
+               case V4L2_ASYNC_MATCH_TYPE_FWNODE:
                        match = match_fwnode;
                        break;
                default:
                return false;
 
        switch (asd_x->match.type) {
-       case V4L2_ASYNC_MATCH_I2C:
+       case V4L2_ASYNC_MATCH_TYPE_I2C:
                return asd_x->match.i2c.adapter_id ==
                        asd_y->match.i2c.adapter_id &&
                        asd_x->match.i2c.address ==
                        asd_y->match.i2c.address;
-       case V4L2_ASYNC_MATCH_FWNODE:
+       case V4L2_ASYNC_MATCH_TYPE_FWNODE:
                return asd_x->match.fwnode == asd_y->match.fwnode;
        default:
                break;
        struct device *dev = notifier_dev(notifier);
 
        switch (asd->match.type) {
-       case V4L2_ASYNC_MATCH_I2C:
-       case V4L2_ASYNC_MATCH_FWNODE:
+       case V4L2_ASYNC_MATCH_TYPE_I2C:
+       case V4L2_ASYNC_MATCH_TYPE_FWNODE:
                if (v4l2_async_nf_has_async_subdev(notifier, asd, skip_self)) {
                        dev_dbg(dev, "v4l2-async: subdev descriptor already listed in a notifier\n");
                        return -EEXIST;
 
        list_for_each_entry_safe(asd, tmp, ¬ifier->asd_list, asd_list) {
                switch (asd->match.type) {
-               case V4L2_ASYNC_MATCH_FWNODE:
+               case V4L2_ASYNC_MATCH_TYPE_FWNODE:
                        fwnode_handle_put(asd->match.fwnode);
                        break;
                default:
        if (!asd)
                return ERR_PTR(-ENOMEM);
 
-       asd->match.type = V4L2_ASYNC_MATCH_FWNODE;
+       asd->match.type = V4L2_ASYNC_MATCH_TYPE_FWNODE;
        asd->match.fwnode = fwnode_handle_get(fwnode);
 
        ret = __v4l2_async_nf_add_subdev(notifier, asd);
        if (!asd)
                return ERR_PTR(-ENOMEM);
 
-       asd->match.type = V4L2_ASYNC_MATCH_I2C;
+       asd->match.type = V4L2_ASYNC_MATCH_TYPE_I2C;
        asd->match.i2c.adapter_id = adapter_id;
        asd->match.i2c.address = address;
 
                                 struct v4l2_async_subdev *asd)
 {
        switch (asd->match.type) {
-       case V4L2_ASYNC_MATCH_I2C:
+       case V4L2_ASYNC_MATCH_TYPE_I2C:
                seq_printf(s, " [i2c] dev=%d-%04x\n", asd->match.i2c.adapter_id,
                           asd->match.i2c.address);
                break;
-       case V4L2_ASYNC_MATCH_FWNODE: {
+       case V4L2_ASYNC_MATCH_TYPE_FWNODE: {
                struct fwnode_handle *devnode, *fwnode = asd->match.fwnode;
 
                devnode = fwnode_graph_is_endpoint(fwnode) ?
 
  * enum v4l2_async_match_type - type of asynchronous subdevice logic to be used
  *     in order to identify a match
  *
- * @V4L2_ASYNC_MATCH_I2C: Match will check for I2C adapter ID and address
- * @V4L2_ASYNC_MATCH_FWNODE: Match will use firmware node
+ * @V4L2_ASYNC_MATCH_TYPE_I2C: Match will check for I2C adapter ID and address
+ * @V4L2_ASYNC_MATCH_TYPE_FWNODE: Match will use firmware node
  *
  * This enum is used by the asynchronous sub-device logic to define the
  * algorithm that will be used to match an asynchronous device.
  */
 enum v4l2_async_match_type {
-       V4L2_ASYNC_MATCH_I2C,
-       V4L2_ASYNC_MATCH_FWNODE,
+       V4L2_ASYNC_MATCH_TYPE_I2C,
+       V4L2_ASYNC_MATCH_TYPE_FWNODE,
 };
 
 /**
  *
  * @type:      type of match that will be used
  * @fwnode:    pointer to &struct fwnode_handle to be matched.
- *             Used if @match_type is %V4L2_ASYNC_MATCH_FWNODE.
+ *             Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_FWNODE.
  * @i2c:       embedded struct with I2C parameters to be matched.
  *             Both @match.i2c.adapter_id and @match.i2c.address
  *             should be matched.
- *             Used if @match_type is %V4L2_ASYNC_MATCH_I2C.
+ *             Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_I2C.
  * @i2c.adapter_id:
  *             I2C adapter ID to be matched.
- *             Used if @match_type is %V4L2_ASYNC_MATCH_I2C.
+ *             Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_I2C.
  * @i2c.address:
  *             I2C address to be matched.
- *             Used if @match_type is %V4L2_ASYNC_MATCH_I2C.
+ *             Used if @match_type is %V4L2_ASYNC_MATCH_TYPE_I2C.
  */
 struct v4l2_async_match_desc {
        enum v4l2_async_match_type type;