From patchwork Tue Jun 23 10:57:30 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Chinchilla X-Patchwork-Id: 4156 Return-Path: Received: from mail-ej1-x644.google.com (mail-ej1-x644.google.com [IPv6:2a00:1450:4864:20::644]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 87FE9609A5 for ; Tue, 23 Jun 2020 12:57:38 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (2048-bit key; unprotected) header.d=gregariousmammal.com header.i=@gregariousmammal.com header.b="Nfns92S1"; dkim-atps=neutral Received: by mail-ej1-x644.google.com with SMTP id ga4so7600369ejb.11 for ; Tue, 23 Jun 2020 03:57:38 -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=OoRqZgcQDBG4BkurXnv6O4h0LxcORT8WmJ+Vx6ew7bQ=; b=Nfns92S1oUKqCJbYm803uPiBBhEXa9ZlliOzpO4pTrp9rB8/Jpsz0qNX4MrHQo2Wca XI5tjV69PB9GvERQrKUqOMplhlMmh1g5eC48abUT634XMobc/iqgu4fFNjP86uSSEbMX 0LXCNWlBI5rl1ivoKjL+dO71sesZeXYXQ8imdXFzNbCipvjCmtvCKJc/GlMBS9Ch2XPw zabwupnWDEQ7t2TUvI8wNeXfHm14KOxoK7ObyufzAySGIU9bvjl0tpZyx0Fxwj95O6Nt wNz5tQmyfHeBEVw5fvWCqcaIu29IcNVd46a1g5sX3Xt0IrL5HTOhVeDv0shad23ns3Hw g4Mg== 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=OoRqZgcQDBG4BkurXnv6O4h0LxcORT8WmJ+Vx6ew7bQ=; b=d0qMjpIBihxpqwnYEV8oT0InnrK6zdunJAXnvEo+ZpBwLDogHmXUMXoOuSfAkQBbxR fDz13q1hUJsHQP8+fOiIboVWC5qwZM1fa5FRXhScTi3Dowp1Lb7Z7AoAeOzeT/bNYBso Lx8xAU82TzkfHLrR09UC2XCzARQWK4+hFWSpV8VfCaLW8fbg1rWZ/fnZZSrIS/2AhkYi oPq1MPmuIc2SfuoShz3gqO9yh4km2eq0K7Cpu0v6Cbj1y1E8UxhiJiZFxx6dQocAcN02 UkHe16Aq/ZtkEKmz+ozXSYE6xsntFGU5PQ9aDpPO5fXBzYXysAOCg+ro21XUOklKl2O3 Khlg== X-Gm-Message-State: AOAM532KomsnqGVWBOsx6zriXoFclzHsgtOhTX1ANQjTa6yQykzw8Ydc 8FuA66c2CTfikopYBoQBD21r74qDQ2D6HQ== X-Google-Smtp-Source: ABdhPJxF9MmgC4mnYh6mEb68QRlZUmFZidSYPmu9e+aGCp/ZoWHhZu9ARLvRRht4xBF5zd4DRRN54g== X-Received: by 2002:a17:906:cf91:: with SMTP id um17mr1143830ejb.168.1592909857789; Tue, 23 Jun 2020 03:57:37 -0700 (PDT) Received: from chinchBook-Pro.fritz.box (ip5b4075ab.dynamic.kabel-deutschland.de. [91.64.117.171]) by smtp.gmail.com with ESMTPSA id m26sm3248581ejn.122.2020.06.23.03.57.36 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Tue, 23 Jun 2020 03:57:37 -0700 (PDT) From: chris@gregariousmammal.com To: libcamera-devel@lists.libcamera.org Cc: Chris Chinchilla Date: Tue, 23 Jun 2020 12:57:30 +0200 Message-Id: <20200623105730.26956-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: Tue, 23 Jun 2020 10:57:38 -0000 From: Chris Chinchilla Fix incorrect method in cameradata docs Fixes: b581b9576abd ("libcamera: pipeline_handler: Make pipeline-specific data mandatory") Signed-off-by: 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 14dfba0..15cdc17 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(). */