Show a cover letter.

GET /api/covers/3409/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 3409,
    "url": "https://patchwork.libcamera.org/api/covers/3409/?format=api",
    "web_url": "https://patchwork.libcamera.org/cover/3409/",
    "project": {
        "id": 1,
        "url": "https://patchwork.libcamera.org/api/projects/1/?format=api",
        "name": "libcamera",
        "link_name": "libcamera",
        "list_id": "libcamera_core",
        "list_email": "libcamera-devel@lists.libcamera.org",
        "web_url": "",
        "scm_url": "",
        "webscm_url": ""
    },
    "msgid": "<20200407163825.1766483-1-jacopo@jmondi.org>",
    "date": "2020-04-07T16:38:14",
    "name": "[libcamera-devel,v8,00/11] media: Report camera sensor properties",
    "submitter": {
        "id": 3,
        "url": "https://patchwork.libcamera.org/api/people/3/?format=api",
        "name": "Jacopo Mondi",
        "email": "jacopo@jmondi.org"
    },
    "mbox": "https://patchwork.libcamera.org/cover/3409/mbox/",
    "series": [
        {
            "id": 801,
            "url": "https://patchwork.libcamera.org/api/series/801/?format=api",
            "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=801",
            "date": "2020-04-07T16:38:14",
            "name": "media: Report camera sensor properties",
            "version": 8,
            "mbox": "https://patchwork.libcamera.org/series/801/mbox/"
        }
    ],
    "comments": "https://patchwork.libcamera.org/api/covers/3409/comments/",
    "headers": {
        "Return-Path": "<jacopo@jmondi.org>",
        "Received": [
            "from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net\n\t[217.70.183.194])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id C9467600F0\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tTue,  7 Apr 2020 18:35:29 +0200 (CEST)",
            "from localhost.localdomain (2-224-242-101.ip172.fastwebnet.it\n\t[2.224.242.101]) (Authenticated sender: jacopo@jmondi.org)\n\tby relay2-d.mail.gandi.net (Postfix) with ESMTPSA id 4FE9B4000A;\n\tTue,  7 Apr 2020 16:35:27 +0000 (UTC)"
        ],
        "X-Originating-IP": "2.224.242.101",
        "From": "Jacopo Mondi <jacopo@jmondi.org>",
        "To": "Mauro Carvalho Chehab <mchehab@kernel.org>,\n\tHans Verkuil <hverkuil-cisco@xs4all.nl>,\n\tSakari Ailus <sakari.ailus@linux.intel.com>,\n\tLaurent Pinchart <laurent.pinchart@ideasonboard.com>, tfiga@google.com,\n\tpavel@ucw.cz",
        "Cc": "Jacopo Mondi <jacopo@jmondi.org>,\n\tlinux-media@vger.kernel.org (open list:MEDIA INPUT INFRASTRUCTURE\n\t(V4L/DVB)), libcamera-devel@lists.libcamera.org",
        "Date": "Tue,  7 Apr 2020 18:38:14 +0200",
        "Message-Id": "<20200407163825.1766483-1-jacopo@jmondi.org>",
        "X-Mailer": "git-send-email 2.26.0",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[libcamera-devel] [PATCH v8 00/11] media: Report camera sensor\n\tproperties",
        "X-BeenThere": "libcamera-devel@lists.libcamera.org",
        "X-Mailman-Version": "2.1.29",
        "Precedence": "list",
        "List-Id": "<libcamera-devel.lists.libcamera.org>",
        "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>",
        "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>",
        "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>",
        "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>",
        "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>",
        "X-List-Received-Date": "Tue, 07 Apr 2020 16:35:30 -0000"
    },
    "content": "This new version includes Rob's ack on the 'rotation' DTS property definition\nand addresses Hans' comments there.\n\nThe rest of the series, which mostly addresses controls remains to be\nacknowledged and is unchanged compared to v7.\n\nv7->v8:\n- Add Rob's ack to 03/11\n- Address Hans typographical comments in 03/11\n\nJacopo Mondi (11):\n  dt-bindings: video-interfaces: Document 'location' property\n  media: v4l2-ctrl: Document V4L2_CID_CAMERA_SENSOR_LOCATION\n  dt-bindings: video-interface: Replace 'rotation' description\n  media: v4l2-ctrl: Document V4L2_CID_CAMERA_SENSOR_ROTATION\n  media: v4l2-ctrls: Add camera location and rotation\n  media: v4l2-fwnode: Add helper to parse device properties\n  include: v4l2-ctrl: Sort forward declarations\n  media: v4l2-ctrls: Sort includes alphabetically\n  media: v4l2-ctrls: Add helper to register properties\n  media: i2c: ov5670: Parse and register properties\n  media: i2c: ov13858: Parse and register properties\n\n .../bindings/media/video-interfaces.txt       | 372 +++++++++++++++++-\n .../media/uapi/v4l/ext-ctrls-camera.rst       | 153 +++++++\n drivers/media/i2c/ov13858.c                   |  11 +\n drivers/media/i2c/ov5670.c                    |  12 +\n drivers/media/v4l2-core/v4l2-ctrls.c          |  52 ++-\n drivers/media/v4l2-core/v4l2-fwnode.c         |  42 ++\n include/media/v4l2-ctrls.h                    |  34 +-\n include/media/v4l2-fwnode.h                   |  47 +++\n include/uapi/linux/v4l2-controls.h            |   7 +\n 9 files changed, 718 insertions(+), 12 deletions(-)\n\n--\n2.26.0"
}