The option subvolrootid used to be a workaround for mounting subvolumes
and ineffective since 
5e2a4b25da23 ("btrfs: deprecate subvolrootid mount
option"). We have subvol= that works and we don't need to keep the
cruft, let's remove it.
Signed-off-by: David Sterba <dsterba@suse.com>
 
        /* Deprecated options */
        Opt_recovery,
-       Opt_subvolrootid,
 
        /* Debugging options */
        Opt_check_integrity,
 
        /* Deprecated options */
        {Opt_recovery, "recovery"},
-       {Opt_subvolrootid, "subvolrootid=%d"},
 
        /* Debugging options */
        {Opt_check_integrity, "check_int"},
                case Opt_subvol:
                case Opt_subvol_empty:
                case Opt_subvolid:
-               case Opt_subvolrootid:
                case Opt_device:
                        /*
                         * These are parsed by btrfs_parse_subvol_options or
 
                        *subvol_objectid = subvolid;
                        break;
-               case Opt_subvolrootid:
-                       pr_warn("BTRFS: 'subvolrootid' mount option is deprecated and has no effect\n");
-                       break;
                default:
                        break;
                }