slcan.h 600 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0
  2. * slcan.h - serial line CAN interface driver
  3. *
  4. * Copyright (C) Laurence Culhane <[email protected]>
  5. * Copyright (C) Fred N. van Kempen <[email protected]>
  6. * Copyright (C) Oliver Hartkopp <[email protected]>
  7. * Copyright (C) 2022 Amarula Solutions, Dario Binacchi <[email protected]>
  8. *
  9. */
  10. #ifndef _SLCAN_H
  11. #define _SLCAN_H
  12. bool slcan_err_rst_on_open(struct net_device *ndev);
  13. int slcan_enable_err_rst_on_open(struct net_device *ndev, bool on);
  14. extern const struct ethtool_ops slcan_ethtool_ops;
  15. #endif /* _SLCAN_H */