ipa: rkisp1: awb: Capitalize AWB

AWB is an abbreviation, capitalize it in comments and log messages for
consistency.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Stefan Klug <stefan.klug@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2025-02-23 23:12:40 +02:00
parent 1bb4d3712d
commit 7222171340

View file

@ -92,7 +92,7 @@ int Awb::init(IPAContext &context, const YamlObject &tuningData)
kDefaultColourTemperature);
if (!tuningData.contains("algorithm"))
LOG(RkISP1Awb, Info) << "No awb algorithm specified."
LOG(RkISP1Awb, Info) << "No AWB algorithm specified."
<< " Default to grey world";
auto mode = tuningData["algorithm"].get<std::string>("grey");
@ -101,14 +101,14 @@ int Awb::init(IPAContext &context, const YamlObject &tuningData)
} else if (mode == "bayes") {
awbAlgo_ = std::make_unique<AwbBayes>();
} else {
LOG(RkISP1Awb, Error) << "Unknown awb algorithm: " << mode;
LOG(RkISP1Awb, Error) << "Unknown AWB algorithm: " << mode;
return -EINVAL;
}
LOG(RkISP1Awb, Debug) << "Using awb algorithm: " << mode;
LOG(RkISP1Awb, Debug) << "Using AWB algorithm: " << mode;
int ret = awbAlgo_->init(tuningData);
if (ret) {
LOG(RkISP1Awb, Error) << "Failed to init awb algorithm";
LOG(RkISP1Awb, Error) << "Failed to init AWB algorithm";
return ret;
}