Howdy, On Wed, Nov 16, 2011 at 11:55 AM, Rene Bolldorf <xsecute@xxxxxxxxxxxxxx> wrote: > Signed-off-by: Rene Bolldorf <xsecute@xxxxxxxxxxxxxx> > --- > arch/mips/pci/Makefile | 1 + > arch/mips/pci/ops-ath724x.c | 109 +++++++++++++++++++++++++++++++++++++++++++ > arch/mips/pci/pci-ath724x.c | 45 ++++++++++++++++++ Why don't you just merge ops-ath724x.c into pci-ath724x.c? (the only place where its contents are referenced) > diff --git a/arch/mips/pci/ops-ath724x.c b/arch/mips/pci/ops-ath724x.c > new file mode 100644 > index 0000000..bd3cf15 > --- /dev/null > +++ b/arch/mips/pci/ops-ath724x.c > @@ -0,0 +1,109 @@ [...] > +static int ath724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where, > + int size, uint32_t *value) > +{ > + unsigned long flags, addr, tval, mask; > + > + if(devfn) > + return PCIBIOS_DEVICE_NOT_FOUND; > + > + if(where & (size - 1)) > + return PCIBIOS_BAD_REGISTER_NUMBER; Please run both patches through checkpatch once and fix up the codingstyle issues it will complain about (like the two above). Thanks, Manuel Lauss