cc2520.h 410 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /* Header file for cc2520 radio driver
  3. *
  4. * Copyright (C) 2014 Varka Bhadram <[email protected]>
  5. * Md.Jamal Mohiuddin <[email protected]>
  6. * P Sowjanya <[email protected]>
  7. */
  8. #ifndef __CC2520_H
  9. #define __CC2520_H
  10. struct cc2520_platform_data {
  11. int fifo;
  12. int fifop;
  13. int cca;
  14. int sfd;
  15. int reset;
  16. int vreg;
  17. };
  18. #endif