bus.h 356 B

12345678910111213141516171819
  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. #ifndef HOST1X_BUS_H
  7. #define HOST1X_BUS_H
  8. struct bus_type;
  9. struct host1x;
  10. extern struct bus_type host1x_bus_type;
  11. int host1x_register(struct host1x *host1x);
  12. int host1x_unregister(struct host1x *host1x);
  13. #endif