rt2800: add rt2800_init_bbp_305x_soc subroutine
New routine for SOC specific BBP initialization, empty for now. Signed-off-by: Stanislaw Gruszka <stf_xl@wp.pl> Acked-by: Helmut Schaa <helmut.schaa@googlemail.com> Acked-by: Gertjan van Wingerde <gwingerde@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
39ab3e8b45
commit
dae62957ff
|
@ -3953,6 +3953,10 @@ static void rt2800_init_bbp_early(struct rt2x00_dev *rt2x00dev)
|
|||
rt2800_bbp_write(rt2x00dev, 106, 0x35);
|
||||
}
|
||||
|
||||
static void rt2800_init_bbp_305x_soc(struct rt2x00_dev *rt2x00dev)
|
||||
{
|
||||
}
|
||||
|
||||
static void rt2800_init_bbp_28xx(struct rt2x00_dev *rt2x00dev)
|
||||
{
|
||||
}
|
||||
|
@ -4062,6 +4066,9 @@ static void rt2800_init_bbp(struct rt2x00_dev *rt2x00dev)
|
|||
u8 reg_id;
|
||||
u8 value;
|
||||
|
||||
if (rt2800_is_305x_soc(rt2x00dev))
|
||||
rt2800_init_bbp_305x_soc(rt2x00dev);
|
||||
|
||||
switch (rt2x00dev->chip.rt) {
|
||||
case RT2860:
|
||||
case RT2872:
|
||||
|
|
Loading…
Reference in New Issue