~ubuntu-branches/ubuntu/trusty/linux-lts-xenial/trusty-proposed

« back to all changes in this revision

Viewing changes to drivers/media/usb/uvc/uvc_driver.c

  • Committer: Package Import Robot
  • Author(s): Brad Figg
  • Date: 2016-03-17 09:18:22 UTC
  • Revision ID: package-import@ubuntu.com-20160317091822-1sqft3zxoyt9tumu
Tags: 4.4.0-14.30~14.04.2
* Release Tracking Bug (LP: #1558247)

* Current 4.4 kernel won't boot on powerpc (LP: #1557130)
  - powerpc: Fix dedotify for binutils >= 2.26

* ZFS: send fails to transmit some holes [corruption] (LP: #1557151)
  - Illumos 6370 - ZFS send fails to transmit some holes

* Request to cherry-pick uvcvideo patch for Xenial kernel support of RealSense
  camera (LP: #1557138)
  - UVC: Add support for ds4 depth camera

* use after free of task_struct->numa_faults in task_numa_find_cpu (LP: #1527643)
  - sched/numa: Fix use-after-free bug in the task_numa_compare

* overlay fs regression: chmod fails with "Operation not permitted" on chowned
  files (LP: #1555997)
  - ovl: copy new uid/gid into overlayfs runtime inode

* Miscellaneous Ubuntu changes
  - SAUCE: Dump stack when X.509 certificates cannot be loaded

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
                .guid           = UVC_GUID_FORMAT_H264,
149
149
                .fcc            = V4L2_PIX_FMT_H264,
150
150
        },
 
151
        {
 
152
                .name           = "Greyscale 8 L/R (Y8I)",
 
153
                .guid           = UVC_GUID_FORMAT_Y8I,
 
154
                .fcc            = V4L2_PIX_FMT_Y8I,
 
155
        },
 
156
        {
 
157
                .name           = "Greyscale 12 L/R (Y12I)",
 
158
                .guid           = UVC_GUID_FORMAT_Y12I,
 
159
                .fcc            = V4L2_PIX_FMT_Y12I,
 
160
        },
 
161
        {
 
162
                .name           = "Depth data 16-bit (Z16)",
 
163
                .guid           = UVC_GUID_FORMAT_Z16,
 
164
                .fcc            = V4L2_PIX_FMT_Z16,
 
165
        },
 
166
        {
 
167
                .name           = "Bayer 10-bit (SRGGB10P)",
 
168
                .guid           = UVC_GUID_FORMAT_RW10,
 
169
                .fcc            = V4L2_PIX_FMT_SRGGB10P,
 
170
        },
151
171
};
152
172
 
153
173
/* ------------------------------------------------------------------------