diff options
Diffstat (limited to 'v4l')
-rwxr-xr-x | v4l/scripts/hg-pull-req.pl | 6 | ||||
-rw-r--r-- | v4l/versions.txt | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/v4l/scripts/hg-pull-req.pl b/v4l/scripts/hg-pull-req.pl index 66de967eb..09f0b513f 100755 --- a/v4l/scripts/hg-pull-req.pl +++ b/v4l/scripts/hg-pull-req.pl @@ -81,9 +81,11 @@ if (`hg outgoing $from_repo` !~ /^no changes found$/m || open IN, "hg outgoing -M $to_repo |"; while(<IN>) { - if(/^changeset:\s+\d+:([[:xdigit:]]{12})$/) { + if(/^changeset:\s+\d+:([[:xdigit:]]+)$/) { push @changesets, $1; - } elsif(/^summary:\s+(\S.*)$/) { + } elsif(/^description:$/) { + $_ = <IN>; + /^(\S.*)$/; if ($1 =~ /^merge:/) { # Skip merge changesets pop @changesets; diff --git a/v4l/versions.txt b/v4l/versions.txt index 5eda9f631..2b3ec7638 100644 --- a/v4l/versions.txt +++ b/v4l/versions.txt @@ -26,12 +26,14 @@ DVB_DM1105 [2.6.20] #This driver requires HID_REQ_GET_REPORT USB_SI470X +# use of struct delayed_work +USB_GSPCA_FINEPIX +# uses linux/hid.h and struct delayed_work +USB_SI470X [2.6.19] #This driver were developed at kernel 2.6.19, requiring vmalloc_user/remap_vmalloc_range VIDEO_CAFE_CCIC -# use of struct delayed_work -USB_GSPCA_FINEPIX #struct device vs struct class_device issues USB_ET61X251 USB_SN9C102 @@ -41,6 +43,8 @@ USB_OV511 USB_STV680 USB_S2255 VIDEO_USBVISION +# Uses supports_autosuspend +USB_MR800 # Uses remap_vmalloc_range() [2.6.18] |