Re: [PATCH v7 1/5] misc: Add Synopsys DesignWare xData IP driver

From: Greg Kroah-Hartman
Date: Mon Mar 29 2021 - 01:05:29 EST


On Sun, Mar 28, 2021 at 09:06:47PM +0000, Gustavo Pimentel wrote:
> > > +static const struct pci_device_id dw_xdata_pcie_id_table[] = {
> > > + { PCI_DEVICE_DATA(SYNOPSYS, EDDA, &snps_edda_data) },
> >
> > Why do you need a pointer to snps_edda_data here?
>
> The structure snps_edda_data indicates the location of this IP block (BAR
> and offset) for this particular endpoint.
> It's very likely in the future to be more variants that for HW design
> reasons might require this IP block to be on a different location.

Then make the change when that happens sometime in the future. Don't
add unneeded complexity today, that just makes the code harder to review
by us now, and for you to maintain today.

thanks,

greg k-h