Linux Audio

Check our new training course

Real-Time Linux with PREEMPT_RT training

Feb 18-20, 2025
Register
Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2/*
 3 * Copyright (C) 2012 Avionic Design GmbH
 4 * Copyright (C) 2012-2013, NVIDIA Corporation
 5 */
 6
 7#ifndef HOST1X_BUS_H
 8#define HOST1X_BUS_H
 9
10struct bus_type;
11struct host1x;
12
13extern const struct bus_type host1x_bus_type;
14
15int host1x_register(struct host1x *host1x);
16int host1x_unregister(struct host1x *host1x);
17
18#endif
v5.4
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2/*
 3 * Copyright (C) 2012 Avionic Design GmbH
 4 * Copyright (C) 2012-2013, NVIDIA Corporation
 5 */
 6
 7#ifndef HOST1X_BUS_H
 8#define HOST1X_BUS_H
 9
10struct bus_type;
11struct host1x;
12
13extern struct bus_type host1x_bus_type;
14
15int host1x_register(struct host1x *host1x);
16int host1x_unregister(struct host1x *host1x);
17
18#endif