On 05/31/2012 10:40 PM, Hauke Mehrtens wrote: > The functions and structs are not used in an other file and the > prototypes are in no header file, just make them static so the compiler > is able to optimize them better. > > Signed-off-by: Hauke Mehrtens <hauke@xxxxxxxxxx> > --- > diff --git a/drivers/bcma/host_pci.c b/drivers/bcma/host_pci.c > index 6c05cf4..f7fbae7 100644 > --- a/drivers/bcma/host_pci.c > +++ b/drivers/bcma/host_pci.c > @@ -77,8 +77,8 @@ static void bcma_host_pci_write32(struct bcma_device *core, u16 offset, > } > > #ifdef CONFIG_BCMA_BLOCKIO > -void bcma_host_pci_block_read(struct bcma_device *core, void *buffer, > - size_t count, u16 offset, u8 reg_width) > +static void bcma_host_pci_block_read(struct bcma_device *core, void *buffer, > + size_t count, u16 offset, u8 reg_width) align this with struct keyword above. > { > void __iomem *addr = core->bus->mmio + offset; > if (core->bus->mapped_core != core) > @@ -100,8 +100,9 @@ void bcma_host_pci_block_read(struct bcma_device *core, void *buffer, > } > } > > -void bcma_host_pci_block_write(struct bcma_device *core, const void *buffer, > - size_t count, u16 offset, u8 reg_width) > +static void bcma_host_pci_block_write(struct bcma_device *core, > + const void *buffer, size_t count, > + u16 offset, u8 reg_width) same here. checkpatch also spews warnings about DOS line endings. Gr. AvS -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html