Re: igc: Add missing return in error path

2022-06-23 Thread Greg Steuck
Thanks Christian! OK gnezdo@ is somebody want to commit this. I confirmed that it builds too. Christian Ludwig writes: > There is a return missing in one of the error paths of igc_init(). > --- > sys/dev/pci/if_igc.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/sys/dev/pci/if_igc.c

igc: Add missing return in error path

2022-06-23 Thread Christian Ludwig
There is a return missing in one of the error paths of igc_init(). --- sys/dev/pci/if_igc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/dev/pci/if_igc.c b/sys/dev/pci/if_igc.c index 734bc8b0275..7f5fcb98b99 100644 --- a/sys/dev/pci/if_igc.c +++ b/sys/dev/pci/if_igc.c @@ -910,6 +910,7 @