The includes that are not used can be removed. Signed-off-by: Milan Zamazal <mzamazal@redhat.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
29 lines
497 B
C++
29 lines
497 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* sysfs-based device enumerator
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "libcamera/internal/device_enumerator.h"
|
|
|
|
class MediaDevice;
|
|
|
|
namespace libcamera {
|
|
|
|
class DeviceEnumeratorSysfs final : public DeviceEnumerator
|
|
{
|
|
public:
|
|
int init();
|
|
int enumerate();
|
|
|
|
private:
|
|
int populateMediaDevice(MediaDevice *media);
|
|
std::string lookupDeviceNode(int major, int minor);
|
|
};
|
|
|
|
} /* namespace libcamera */
|