libcamera: Global s/devnode/deviceNode rename

Do not use the abreviated version for members, variables and getter
methods.

Library-wise rename, no intended functional changes.

Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Jacopo Mondi 2019-01-21 17:53:28 +01:00
parent d18d25bde3
commit 1af83ca6df
11 changed files with 55 additions and 55 deletions

View file

@ -72,7 +72,7 @@ int IPU3PipelineTest::init()
}
if (cio2->open()) {
cerr << "Failed to open media device " << cio2->devnode() << endl;
cerr << "Failed to open media device " << cio2->deviceNode() << endl;
return TestFail;
}
@ -84,7 +84,7 @@ int IPU3PipelineTest::init()
*/
int ret = cio2->populate();
if (ret) {
cerr << "Failed to populate media device " << cio2->devnode() << endl;
cerr << "Failed to populate media device " << cio2->deviceNode() << endl;
return TestFail;
}