Patch Detail
Show a patch.
GET /api/patches/261/?format=api
{ "id": 261, "url": "https://patchwork.libcamera.org/api/patches/261/?format=api", "web_url": "https://patchwork.libcamera.org/patch/261/", "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": "<20190117202043.21420-6-kieran.bingham@ideasonboard.com>", "date": "2019-01-17T20:20:43", "name": "[libcamera-devel,5/5] libcamera: event_dispatcher_poll: Fix trivial spelling", "commit_ref": null, "pull_url": null, "state": "accepted", "archived": false, "hash": "befe2e2486a5b634ced6a952c206f016809583b5", "submitter": { "id": 4, "url": "https://patchwork.libcamera.org/api/people/4/?format=api", "name": "Kieran Bingham", "email": "kieran.bingham@ideasonboard.com" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/261/mbox/", "series": [ { "id": 87, "url": "https://patchwork.libcamera.org/api/series/87/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=87", "date": "2019-01-17T20:20:38", "name": "General fixes", "version": 1, "mbox": "https://patchwork.libcamera.org/series/87/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/261/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/261/checks/", "tags": {}, "headers": { "Return-Path": "<kieran.bingham@ideasonboard.com>", "Received": [ "from perceval.ideasonboard.com (perceval.ideasonboard.com\n\t[IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id 48C8760CA7\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 17 Jan 2019 21:20:50 +0100 (CET)", "from localhost.localdomain\n\t(cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233])\n\tby perceval.ideasonboard.com (Postfix) with ESMTPSA id DA56B53E;\n\tThu, 17 Jan 2019 21:20:49 +0100 (CET)" ], "DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com;\n\ts=mail; t=1547756450;\n\tbh=taH8XZ+Akjmc/XaapHImI4FqH2AEX70rZxb043cKytg=;\n\th=From:To:Cc:Subject:Date:In-Reply-To:References:From;\n\tb=ecGsyjfc3z9nd8KGpAkM0V0Ot/KsrhcCnSOQzH/nwIWTpj6bdUvT1Vbww6Mde6ROS\n\ttBYKFuHhveaZzLWHAIVFKKz/0jChl0T1gdzPhEVcKVKOnjlkE9r8oi1SvyQf26lPDq\n\tVjYOdgcitToODL/d20T92LadIeIwLwkZJ7ayXskg=", "From": "Kieran Bingham <kieran.bingham@ideasonboard.com>", "To": "LibCamera Devel <libcamera-devel@lists.libcamera.org>", "Date": "Thu, 17 Jan 2019 20:20:43 +0000", "Message-Id": "<20190117202043.21420-6-kieran.bingham@ideasonboard.com>", "X-Mailer": "git-send-email 2.17.1", "In-Reply-To": "<20190117202043.21420-1-kieran.bingham@ideasonboard.com>", "References": "<20190117202043.21420-1-kieran.bingham@ideasonboard.com>", "Subject": "[libcamera-devel] [PATCH 5/5] libcamera: event_dispatcher_poll: Fix\n\ttrivial spelling", "X-BeenThere": "libcamera-devel@lists.libcamera.org", "X-Mailman-Version": "2.1.23", "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": "Thu, 17 Jan 2019 20:20:50 -0000" }, "content": "Correct the spelling of 'notifiers'.\n\nFixes: 8356f8a6ab87 (\"libcamera: Add a poll-based event dispatcher\")\nSigned-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>\n---\n src/libcamera/event_dispatcher_poll.cpp | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)", "diff": "diff --git a/src/libcamera/event_dispatcher_poll.cpp b/src/libcamera/event_dispatcher_poll.cpp\nindex 69edfcbf2725..2072ae0aa3da 100644\n--- a/src/libcamera/event_dispatcher_poll.cpp\n+++ b/src/libcamera/event_dispatcher_poll.cpp\n@@ -146,7 +146,7 @@ void EventDispatcherPoll::processEvents()\n \t\t\t << timeout.tv_nsec;\n \t}\n \n-\t/* Wait for events and process notifers and timers. */\n+\t/* Wait for events and process notifiers and timers. */\n \tret = ppoll(pollfds.data(), pollfds.size(),\n \t\t nextTimer ? &timeout : nullptr, nullptr);\n \tif (ret < 0) {\n", "prefixes": [ "libcamera-devel", "5/5" ] }