ipa: raspberrypi: Drop unneeded [[maybe_unused]]
The [[maybe_unused]] in the IMX477 camera helper isn't needed. This had been pointed out by Naush during review, but I failed to update the code before pushing. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
This commit is contained in:
parent
579f55b108
commit
d7415bc4e4
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ constexpr uint32_t expHiReg = 0x0202;
|
|||
constexpr uint32_t expLoReg = 0x0203;
|
||||
constexpr uint32_t gainHiReg = 0x0204;
|
||||
constexpr uint32_t gainLoReg = 0x0205;
|
||||
constexpr std::initializer_list<uint32_t> registerList [[maybe_unused]] = { expHiReg, expLoReg, gainHiReg, gainLoReg };
|
||||
constexpr std::initializer_list<uint32_t> registerList = { expHiReg, expLoReg, gainHiReg, gainLoReg };
|
||||
|
||||
class CamHelperImx477 : public CamHelper
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue