From patchwork Tue Jun 23 10:37:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Chinchilla X-Patchwork-Id: 4155 Return-Path: Received: from mail-ed1-x542.google.com (mail-ed1-x542.google.com [IPv6:2a00:1450:4864:20::542]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9F075609A5 for ; Tue, 23 Jun 2020 12:38:04 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (2048-bit key; unprotected) header.d=gregariousmammal.com header.i=@gregariousmammal.com header.b="RIoxX7xu"; dkim-atps=neutral Received: by mail-ed1-x542.google.com with SMTP id e15so5577672edr.2 for ; Tue, 23 Jun 2020 03:38:04 -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=OtSwo7vnbW47qGqdKJIHqM3aUGv0XvVrmjbTcMAb8VI=; b=RIoxX7xuCd4Q7CZ5MEojMPNlIp7PfsLcDYbPoS2m9aAHyVEQajHdbSeIN8SNjgTyWC 6CAZkcOrU6+ra8r6SIAX+1L77oYSybOpAhlT0m9mj9XyaarYYCiqN0VP4xIBb1gwvGeb 82Gs4kMlRkz1yh1iSnBDK5c42AG/Rjwwt+j9hb5fDv/cyskKpRbUn+mD+M9CuZN9spFq WCg8KZhU/jsDgqkZDbiiqVpsPTtpu/Zi+sxTCJaNBWM1yapqHKBZiM16Ux2TrLRSWawK xZCAePutyweNYloitvksO7tNIL59kVZUSINtl0x3lc3gJucUPgp+wpDqf0JlReO4VX6O n6FA== 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=OtSwo7vnbW47qGqdKJIHqM3aUGv0XvVrmjbTcMAb8VI=; b=kbE7URFj/+rmuUGb6fOXZzHLdEEfAd2uXKlD7nmjLK1hnzs0Jp53IxC0XsJ+vk4524 wnXKR44n18rButI38v38Xq38FBs8WodSIGAZ9XdQMalAvqW8c5zq0Q1ICdleWmpWM5v7 P9d51CxIL+3+Aru/HBhgPpYn9l91JLlpGl9ONMAGg8Wdq5ytcSFOeqrDQdY0V5XyJptt IqIXerf2bWpTFhJsFwnrTXA5g44WbVJAWQQLRROhbiG5VzN269T0CuU5Hns27giiRIG7 qu+x7NxzAobmqR+0GW//qrzkCe8BRDe+74gdvQKY3dwzHTV/Nc2pdGCb/VQx2tmOXeS6 N7UA== X-Gm-Message-State: AOAM5303CnkQuIX0eM+6uo5h7Ud0Je4gxKILdZ0MItoVx+Fx1GizHIhm JqevbTlLrtZ7KwdWUWI4/8XnFqGwLMr4Gg== X-Google-Smtp-Source: ABdhPJzWmQxHRHmV+PJbaDvFFZx7T22uPSXcZ0ck3m654TDtTsRbrtfjlpQ+eUf76JQo3GWa0Z+eFQ== X-Received: by 2002:a05:6402:1606:: with SMTP id f6mr20564767edv.286.1592908683826; Tue, 23 Jun 2020 03:38:03 -0700 (PDT) Received: from chinchBook-Pro.fritz.box (ip5b4075ab.dynamic.kabel-deutschland.de. [91.64.117.171]) by smtp.gmail.com with ESMTPSA id p13sm14271387edq.50.2020.06.23.03.38.02 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Tue, 23 Jun 2020 03:38:03 -0700 (PDT) From: chris@gregariousmammal.com To: libcamera-devel@lists.libcamera.org Cc: Chris Chinchilla Date: Tue, 23 Jun 2020 12:37:54 +0200 Message-Id: <20200623103754.26634-1-chris@gregariousmammal.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] Correct small typo in method description 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:38:04 -0000 From: Chris Chinchilla Correct small typo in method description Fixes: d6a88607479 ("libcamera: pipeline_handler: Keep track of MediaDevice") Signed-off-by: Chris Chinchilla Reviewed-by: Kieran Bingham 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..2eb86ad 100644 --- a/src/libcamera/pipeline_handler.cpp +++ b/src/libcamera/pipeline_handler.cpp @@ -181,7 +181,7 @@ PipelineHandler::~PipelineHandler() */ /** - * \brief Search and acquire a MediDevice matching a device pattern + * \brief Search and acquire a MediaDevice matching a device pattern * \param[in] enumerator Enumerator containing all media devices in the system * \param[in] dm Device match pattern *