radio-si4713.h 684 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * include/media/radio-si4713.h
  3. *
  4. * Board related data definitions for Si4713 radio transmitter chip.
  5. *
  6. * Copyright (c) 2009 Nokia Corporation
  7. * Contact: Eduardo Valentin <eduardo.valentin@nokia.com>
  8. *
  9. * This file is licensed under the terms of the GNU General Public License
  10. * version 2. This program is licensed "as is" without any warranty of any
  11. * kind, whether express or implied.
  12. *
  13. */
  14. #ifndef RADIO_SI4713_H
  15. #define RADIO_SI4713_H
  16. #include <linux/i2c.h>
  17. #define SI4713_NAME "radio-si4713"
  18. /*
  19. * Platform dependent definition
  20. */
  21. struct radio_si4713_platform_data {
  22. int i2c_bus;
  23. struct i2c_board_info *subdev_board_info;
  24. };
  25. #endif /* ifndef RADIO_SI4713_H*/