mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 22:22:08 +02:00
net: sparx5: execute sparx5_vcap_init() on lan969x
The is_sparx5() check was introduced in an earlier series, to make sure the sparx5_vcap_init() was not executed on lan969x, as it was not implemented there yet. Now that it is, remove that check. Reviewed-by: Steen Hegelund <Steen.Hegelund@microchip.com> Reviewed-by: Jens Emil Schulz Østergaard <jensemil.schulzostergaard@microchip.com> Signed-off-by: Daniel Machon <daniel.machon@microchip.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
8caa21e4e4
commit
d4c97e39bf
|
|
@ -770,12 +770,10 @@ static int sparx5_start(struct sparx5 *sparx5)
|
|||
if (err)
|
||||
return err;
|
||||
|
||||
if (is_sparx5(sparx5)) {
|
||||
err = sparx5_vcap_init(sparx5);
|
||||
if (err) {
|
||||
sparx5_unregister_notifier_blocks(sparx5);
|
||||
return err;
|
||||
}
|
||||
err = sparx5_vcap_init(sparx5);
|
||||
if (err) {
|
||||
sparx5_unregister_notifier_blocks(sparx5);
|
||||
return err;
|
||||
}
|
||||
|
||||
/* Start Frame DMA with fallback to register based INJ/XTR */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user