Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  *  FM Driver for Connectivity chip of Texas Instruments.
0004  *  FM TX module header.
0005  *
0006  *  Copyright (C) 2011 Texas Instruments
0007  */
0008 
0009 #ifndef _FMDRV_TX_H
0010 #define _FMDRV_TX_H
0011 
0012 int fm_tx_set_freq(struct fmdev *, u32);
0013 int fm_tx_set_pwr_lvl(struct fmdev *, u8);
0014 int fm_tx_set_region(struct fmdev *, u8);
0015 int fm_tx_set_mute_mode(struct fmdev *, u8);
0016 int fm_tx_set_stereo_mono(struct fmdev *, u16);
0017 int fm_tx_set_rds_mode(struct fmdev *, u8);
0018 int fm_tx_set_radio_text(struct fmdev *, u8 *, u8);
0019 int fm_tx_set_af(struct fmdev *, u32);
0020 int fm_tx_set_preemph_filter(struct fmdev *, u32);
0021 int fm_tx_get_tune_cap_val(struct fmdev *);
0022 
0023 #endif
0024