From patchwork Mon Jun 15 14:49:19 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Chinchilla X-Patchwork-Id: 4038 Return-Path: Received: from mail-ej1-x633.google.com (mail-ej1-x633.google.com [IPv6:2a00:1450:4864:20::633]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 8765F603D8 for ; Mon, 15 Jun 2020 16:49:36 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (2048-bit key; unprotected) header.d=gregariousmammal.com header.i=@gregariousmammal.com header.b="ejhgSQnb"; dkim-atps=neutral Received: by mail-ej1-x633.google.com with SMTP id dr13so17729003ejc.3 for ; Mon, 15 Jun 2020 07:49:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gregariousmammal.com; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Y78XK9C3ah/JTiqHct2fmaZLobo5zPq0HqvK6LBQ0Qo=; b=ejhgSQnbWsqMbD9IUMVLuxnH5mGLpq6mLJI5239zZfSjcnBlGYY9Rhfj0nGNTE4Uf6 94aXGEsLgqlLdaLG50qTer7W8JnFQqAjXDyB9kpVXbOXCYPHBECmHd2lnoDjn1EKj3XA mVZwa8xtEp8xivFc1WlUETAa8PLK0POHcK7+f7sOLH73vfsnyWKed6wUD309Y7XL8eZM prWFDsDTII8UdK6GD3vhRPxBJ34E3cgGOiBKRRIbVpAUFHlBnaNISYrD5HwC6E5Wsa+D GWdOp3sH2tedy3jApJU6+11gLGXQ+DyLW6Nk88N6LICl+sK7XsuZNQrqGvr++myvtMo2 iiGg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Y78XK9C3ah/JTiqHct2fmaZLobo5zPq0HqvK6LBQ0Qo=; b=WG0F3unaqUzzfn8ZbuWUXumnBtGgKbNjEXpZvMitXNt5d0PC6WJoClrR6fTArM56V5 1BpfkBdIZIBvTHuMXBVZbhMTzIK/jw0qO5XIyJtzoXKd7cd4s3p3v4mzKmu9bK/nnhZr iu9ACvIkNwrd1QeNDkeqByzsbjT5N1LbQscNeRHG0wqIO/1Lnif98TRKOsZeAT9lGbLx gyuYEzDGxaj5fIZcx21haNmBSXDEuGH6NTXI/WE5H11JtuGcsadLoR6rudzFzR6dcC4u dkt6ZjJm5CqfjLa65zzLtkG/+gy6GhcjdUbkdInAkTpoCvT+eaECQ/47x8MyUbzArUZC VGbg== X-Gm-Message-State: AOAM533pkJZcsj/bPISA9diao+KD30TPynJghgmVuEoHe/vZ6ubBFGn1 2xuFLti48bvx5W1RtrrfF1TV91ZtAyBVrg== X-Google-Smtp-Source: ABdhPJyV2Xwpa9gTJI6pOu5hP3hHRPPDQpOFwJYHTes8tXjGLBKeejmVFkZ1O1VrN4RXyEbMr7mzOA== X-Received: by 2002:a17:906:2a94:: with SMTP id l20mr25014342eje.224.1592232575768; Mon, 15 Jun 2020 07:49:35 -0700 (PDT) Received: from localhost.localdomain (ip5b4038cc.dynamic.kabel-deutschland.de. [91.64.56.204]) by smtp.gmail.com with ESMTPSA id ce16sm9291540ejb.76.2020.06.15.07.49.34 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Mon, 15 Jun 2020 07:49:35 -0700 (PDT) From: chris@gregariousmammal.com To: libcamera-devel@lists.libcamera.org Cc: Chris Chinchilla Date: Mon, 15 Jun 2020 16:49:19 +0200 Message-Id: <20200615144919.42388-1-chris@gregariousmammal.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] Fix incorrect method in cameradata docs X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2020 14:49:36 -0000 From: Chris Chinchilla Reviewed-by: Umang Jain Reviewed-by: Laurent Pinchart --- src/libcamera/pipeline_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/pipeline_handler.cpp b/src/libcamera/pipeline_handler.cpp index a0f6b0f..fca11cb 100644 --- a/src/libcamera/pipeline_handler.cpp +++ b/src/libcamera/pipeline_handler.cpp @@ -46,7 +46,7 @@ LOG_DEFINE_CATEGORY(Pipeline) * * Pipeline handlers are expected to extend this base class with platform * specific implementation, associate instances of the derived classes - * using the setCameraData() method, and access them at a later time + * using the registerCamera() method, and access them at a later time * with cameraData(). */