Marc Olberding | 1e17db5 | 2025-08-27 12:25:28 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 |
2 | // SPDX-FileCopyrightText: 2025 NVIDIA | ||||
3 | |||||
4 | #pragma once | ||||
5 | |||||
6 | #include <string> | ||||
7 | |||||
8 | namespace i2c | ||||
9 | { | ||||
10 | |||||
11 | void rebind_controller(const std::string_view number); | ||||
12 | void new_device(unsigned int bus, unsigned int address, | ||||
13 | std::string_view device_type); | ||||
14 | } // namespace i2c |