Message ID | 20220201092738.804028-1-naush@raspberrypi.com |
---|---|
State | Accepted |
Headers | show |
Series |
|
Related | show |
Hi Naush Thanks for the patch. On Tue, 1 Feb 2022 at 09:27, Naushir Patuck <naush@raspberrypi.com> wrote: > > Fix a typo in a logging message. > > Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: David Plowman <david.plowman@raspberrypi.com> Best regards David > --- > src/libcamera/pipeline/raspberrypi/raspberrypi.cpp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp > index 8c03eecefe42..6a46e6bc89fa 100644 > --- a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp > +++ b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp > @@ -2070,7 +2070,7 @@ void RPiCameraData::tryRunPipeline() > ispPrepare.embeddedBufferPresent = true; > > LOG(RPI, Debug) << "Signalling signalIspPrepare:" > - << " Bayer buffer id: " << embeddedId; > + << " Embedded buffer id: " << embeddedId; > } > > ipa_->signalIspPrepare(ispPrepare); > -- > 2.25.1 >
Hi Naush, Thank you for the patch. On Tue, Feb 01, 2022 at 09:27:37AM +0000, Naushir Patuck wrote: > Fix a typo in a logging message. > > Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > --- > src/libcamera/pipeline/raspberrypi/raspberrypi.cpp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp > index 8c03eecefe42..6a46e6bc89fa 100644 > --- a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp > +++ b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp > @@ -2070,7 +2070,7 @@ void RPiCameraData::tryRunPipeline() > ispPrepare.embeddedBufferPresent = true; > > LOG(RPI, Debug) << "Signalling signalIspPrepare:" > - << " Bayer buffer id: " << embeddedId; > + << " Embedded buffer id: " << embeddedId; > } > > ipa_->signalIspPrepare(ispPrepare);
diff --git a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp index 8c03eecefe42..6a46e6bc89fa 100644 --- a/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp +++ b/src/libcamera/pipeline/raspberrypi/raspberrypi.cpp @@ -2070,7 +2070,7 @@ void RPiCameraData::tryRunPipeline() ispPrepare.embeddedBufferPresent = true; LOG(RPI, Debug) << "Signalling signalIspPrepare:" - << " Bayer buffer id: " << embeddedId; + << " Embedded buffer id: " << embeddedId; } ipa_->signalIspPrepare(ispPrepare);
Fix a typo in a logging message. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> --- src/libcamera/pipeline/raspberrypi/raspberrypi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)