Message ID | 1793924.CQOukoFCf9@iron-maiden (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | drivers: parisc: Follow the indentation coding standard on printks | expand |
On Thu, 2021-07-08 at 11:25 -0400, Carlos Bilbao wrote: > Fix indentation of printks that start at the beginning of the line. Change this > for the right number of space characters, or tabs if the file uses them. These are ancient codes, but: > diff --git a/drivers/parisc/iosapic.c b/drivers/parisc/iosapic.c [] > @@ -633,7 +633,7 @@ static void iosapic_unmask_irq(struct irq_data *d) > printk("\n"); > } > > > -printk("iosapic_enable_irq(): sel "); > + printk("iosapic_enable_irq(): sel "); > { > struct iosapic_info *isp = vi->iosapic; > > > @@ -642,7 +642,7 @@ printk("iosapic_enable_irq(): sel "); > printk(" %x", d1); > } > } > -printk("\n"); > + printk("\n"); > #endif This is in an undefined #ifdef block and the block could be deleted. > diff --git a/drivers/parisc/sba_iommu.c b/drivers/parisc/sba_iommu.c [] > @@ -1550,7 +1550,7 @@ static void sba_hw_init(struct sba_device *sba_dev) > > > > > #if 0 #if 0 blocks can be removed. > -printk("sba_hw_init(): mem_boot 0x%x 0x%x 0x%x 0x%x\n", PAGE0->mem_boot.hpa, > + printk("sba_hw_init(): mem_boot 0x%x 0x%x 0x%x 0x%x\n", PAGE0->mem_boot.hpa, > PAGE0->mem_boot.spa, PAGE0->mem_boot.pad, PAGE0->mem_boot.cl_class); > > > /*
diff --git a/drivers/parisc/iosapic.c b/drivers/parisc/iosapic.c index 8a3b0c3a1e92..5d27c23e6429 100644 --- a/drivers/parisc/iosapic.c +++ b/drivers/parisc/iosapic.c @@ -633,7 +633,7 @@ static void iosapic_unmask_irq(struct irq_data *d) printk("\n"); } -printk("iosapic_enable_irq(): sel "); + printk("iosapic_enable_irq(): sel "); { struct iosapic_info *isp = vi->iosapic; @@ -642,7 +642,7 @@ printk("iosapic_enable_irq(): sel "); printk(" %x", d1); } } -printk("\n"); + printk("\n"); #endif /* diff --git a/drivers/parisc/sba_iommu.c b/drivers/parisc/sba_iommu.c index dce4cdf786cd..c3381facdfc5 100644 --- a/drivers/parisc/sba_iommu.c +++ b/drivers/parisc/sba_iommu.c @@ -1550,7 +1550,7 @@ static void sba_hw_init(struct sba_device *sba_dev) #if 0 -printk("sba_hw_init(): mem_boot 0x%x 0x%x 0x%x 0x%x\n", PAGE0->mem_boot.hpa, + printk("sba_hw_init(): mem_boot 0x%x 0x%x 0x%x 0x%x\n", PAGE0->mem_boot.hpa, PAGE0->mem_boot.spa, PAGE0->mem_boot.pad, PAGE0->mem_boot.cl_class); /*
Fix indentation of printks that start at the beginning of the line. Change this for the right number of space characters, or tabs if the file uses them. Signed-off-by: Carlos Bilbao <bilbao@vt.edu> --- drivers/parisc/iosapic.c | 4 ++-- drivers/parisc/sba_iommu.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-)