Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions drivers/iio/adc/ad9208.c
Original file line number Diff line number Diff line change
Expand Up @@ -1570,9 +1570,9 @@ static int ad9208_probe(struct spi_device *spi)
break;
case CHIPID_AD9695:
phy->ad9208.model = 0x9208;
phy->ad9208.input_clk_min_hz = 625000000ULL;
phy->ad9208.input_clk_min_hz = 24000000ULL;
phy->ad9208.input_clk_max_hz = 1300000000ULL;
phy->ad9208.adc_clk_min_hz = 625000000ULL;
phy->ad9208.adc_clk_min_hz = 24000000ULL;
Copy link
Collaborator

@nunojsa nunojsa Sep 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But now you broke systems running AD9208-1300 right? So you need to define a new compatible and to be consistent do it as for the ID_DUAL case so you can differentiate between variants and set the proper value. This would be straight forward way.

phy->ad9208.adc_clk_max_hz = 3100000000ULL;
phy->ad9208.slr_max_mbps = 16000;
phy->ad9208.slr_min_mbps = 1687;
Expand Down