summaryrefslogtreecommitdiff
path: root/utils/hooks/pre-commit
AgeCommit message (Expand)Author
2020-04-15licenses: Add SPDX headers to the git commit hook scriptsLaurent Pinchart
2020-01-18checkstyle: Add a pre-commit hook scriptNicolas Dufresne
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2019, Google Inc.
 *
 * device_enumerator_sysfs.h - sysfs-based device enumerator
 */
#ifndef __LIBCAMERA_DEVICE_ENUMERATOR_SYSFS_H__
#define __LIBCAMERA_DEVICE_ENUMERATOR_SYSFS_H__

#include <memory>
#include <string>

#include "device_enumerator.h"

class MediaDevice;

namespace libcamera {

class DeviceEnumeratorSysfs final : public DeviceEnumerator
{
public:
	int init();
	int enumerate();

private:
	int populateMediaDevice(const std::shared_ptr<MediaDevice> &media);
	std::string lookupDeviceNode(int major, int minor);
};

} /* namespace libcamera */

#endif /* __LIBCAMERA_DEVICE_ENUMERATOR_SYSFS_H__ */