All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/12] trivial: HID: Makefile: fix alignment of objs-* entries
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-05-26 13:32   ` Jiri Kosina
  2015-04-28 11:11 ` [Cluster-devel] [PATCH 02/12] trivial: GFS2: inode.c: indent with TABs, not spaces Antonio Ospite
                   ` (7 subsequent siblings)
  8 siblings, 1 reply; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Antonio Ospite, Jiri Kosina, linux-input

Most of the entries are aligned with TABs, fix those which are not.

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Jiri Kosina <jkosina@suse.cz>
Cc: linux-input@vger.kernel.org
---
 drivers/hid/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/hid/Makefile b/drivers/hid/Makefile
index e4a21df..2f8a41d 100644
--- a/drivers/hid/Makefile
+++ b/drivers/hid/Makefile
@@ -24,7 +24,7 @@ obj-$(CONFIG_HID_A4TECH)	+= hid-a4tech.o
 obj-$(CONFIG_HID_ACRUX)		+= hid-axff.o
 obj-$(CONFIG_HID_APPLE)		+= hid-apple.o
 obj-$(CONFIG_HID_APPLEIR)	+= hid-appleir.o
-obj-$(CONFIG_HID_AUREAL)        += hid-aureal.o
+obj-$(CONFIG_HID_AUREAL)	+= hid-aureal.o
 obj-$(CONFIG_HID_BELKIN)	+= hid-belkin.o
 obj-$(CONFIG_HID_BETOP_FF)	+= hid-betopff.o
 obj-$(CONFIG_HID_CHERRY)	+= hid-cherry.o
@@ -46,12 +46,12 @@ obj-$(CONFIG_HID_ICADE)		+= hid-icade.o
 obj-$(CONFIG_HID_KENSINGTON)	+= hid-kensington.o
 obj-$(CONFIG_HID_KEYTOUCH)	+= hid-keytouch.o
 obj-$(CONFIG_HID_KYE)		+= hid-kye.o
-obj-$(CONFIG_HID_LCPOWER)       += hid-lcpower.o
+obj-$(CONFIG_HID_LCPOWER)	+= hid-lcpower.o
 obj-$(CONFIG_HID_LENOVO)	+= hid-lenovo.o
 obj-$(CONFIG_HID_LOGITECH)	+= hid-logitech.o
 obj-$(CONFIG_HID_LOGITECH_DJ)	+= hid-logitech-dj.o
 obj-$(CONFIG_HID_LOGITECH_HIDPP)	+= hid-logitech-hidpp.o
-obj-$(CONFIG_HID_MAGICMOUSE)    += hid-magicmouse.o
+obj-$(CONFIG_HID_MAGICMOUSE)	+= hid-magicmouse.o
 obj-$(CONFIG_HID_MICROSOFT)	+= hid-microsoft.o
 obj-$(CONFIG_HID_MONTEREY)	+= hid-monterey.o
 obj-$(CONFIG_HID_MULTITOUCH)	+= hid-multitouch.o
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [Cluster-devel] [PATCH 02/12] trivial: GFS2: inode.c: indent with TABs, not spaces
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
  2015-04-28 11:11 ` [PATCH 01/12] trivial: HID: Makefile: fix alignment of objs-* entries Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-05-01 18:02   ` Bob Peterson
  2015-04-28 11:11 ` [PATCH 03/12] trivial: ASoC: pxa: pxa-ssp.c: " Antonio Ospite
                   ` (6 subsequent siblings)
  8 siblings, 1 reply; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: cluster-devel.redhat.com

Follow the same style used for the other functions in the same file.

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Steven Whitehouse <swhiteho@redhat.com>
Cc: Bob Peterson <rpeterso@redhat.com>
Cc: cluster-devel at redhat.com
---
 fs/gfs2/inode.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index 1b3ca7a..efd6bfb 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -1227,8 +1227,8 @@ static int gfs2_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
  */
 
 static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
-                            struct file *file, unsigned flags,
-                            umode_t mode, int *opened)
+			    struct file *file, unsigned flags,
+			    umode_t mode, int *opened)
 {
 	struct dentry *d;
 	bool excl = !!(flags & O_EXCL);
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 03/12] trivial: ASoC: pxa: pxa-ssp.c: indent with TABs, not spaces
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
  2015-04-28 11:11 ` [PATCH 01/12] trivial: HID: Makefile: fix alignment of objs-* entries Antonio Ospite
  2015-04-28 11:11 ` [Cluster-devel] [PATCH 02/12] trivial: GFS2: inode.c: indent with TABs, not spaces Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-04-28 11:11 ` [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/ Antonio Ospite
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: alsa-devel, Antonio Ospite, Mark Brown, Daniel Mack

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Daniel Mack <daniel@zonque.org>
Cc: Mark Brown <broonie@kernel.com>
Cc: alsa-devel@alsa-project.org
---
 sound/soc/pxa/pxa-ssp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c
index fbe2e93..eb181ab 100644
--- a/sound/soc/pxa/pxa-ssp.c
+++ b/sound/soc/pxa/pxa-ssp.c
@@ -586,7 +586,7 @@ static int pxa_ssp_hw_params(struct snd_pcm_substream *substream,
 
 	switch (priv->dai_fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
 	case SND_SOC_DAIFMT_I2S:
-	       sspsp = pxa_ssp_read_reg(ssp, SSPSP);
+		sspsp = pxa_ssp_read_reg(ssp, SSPSP);
 
 		if ((pxa_ssp_get_scr(ssp) == 4) && (width == 16)) {
 			/* This is a special case where the bitclk is 64fs
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
                   ` (2 preceding siblings ...)
  2015-04-28 11:11 ` [PATCH 03/12] trivial: ASoC: pxa: pxa-ssp.c: " Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-04-28 14:40   ` Ard Biesheuvel
  2015-05-06 10:37   ` [PATCH 04/12] trivial: " Russell King - ARM Linux
  2015-04-28 11:11 ` [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/ Antonio Ospite
                   ` (4 subsequent siblings)
  8 siblings, 2 replies; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Christoffer Dall <christoffer.dall@linaro.org>
Cc: linux-arm-kernel at lists.infradead.org
---
 arch/arm/lib/lib1funcs.S | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/lib/lib1funcs.S b/arch/arm/lib/lib1funcs.S
index 947567f..af2267f 100644
--- a/arch/arm/lib/lib1funcs.S
+++ b/arch/arm/lib/lib1funcs.S
@@ -167,7 +167,7 @@ Boston, MA 02111-1307, USA.  */
 
 #endif
 
-	@ Perform all needed substractions to keep only the reminder.
+	@ Perform all needed subtractions to keep only the reminder.
 	@ Do comparisons in batch of 4 first.
 	subs	\order, \order, #3		@ yes, 3 is intended here
 	blt	2f
@@ -189,7 +189,7 @@ Boston, MA 02111-1307, USA.  */
 	teqne	\dividend, #0
 	beq	5f
 
-	@ Either 1, 2 or 3 comparison/substractions are left.
+	@ Either 1, 2 or 3 comparison/subtractions are left.
 2:	cmn	\order, #2
 	blt	4f
 	beq	3f
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
                   ` (3 preceding siblings ...)
  2015-04-28 11:11 ` [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/ Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-04-28 12:20   ` Lars-Peter Clausen
  2015-04-28 16:00   ` Mark Brown
  2015-04-28 11:11 ` [PATCH 06/12] trivial: MIPS: Netlogic: xlp/ahci-init-xlp2.c fix 0x0x prefixes Antonio Ospite
                   ` (3 subsequent siblings)
  8 siblings, 2 replies; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Mark Brown, Antonio Ospite, Lars-Peter Clausen, alsa-devel

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Mark Brown <broonie@kernel.org>
Cc: alsa-devel@alsa-project.org
---
 sound/soc/codecs/adau1977.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/adau1977.c b/sound/soc/codecs/adau1977.c
index 7ad8e15..dc8ad08 100644
--- a/sound/soc/codecs/adau1977.c
+++ b/sound/soc/codecs/adau1977.c
@@ -202,7 +202,7 @@ static const struct snd_soc_dapm_route adau1977_dapm_routes[] = {
 		ADAU1977_REG_DC_HPF_CAL, (x) - 1, 1, 0)
 
 #define ADAU1977_DC_SUB_SWITCH(x) \
-	SOC_SINGLE("ADC" #x " DC Substraction Capture Switch", \
+	SOC_SINGLE("ADC" #x " DC Subtraction Capture Switch", \
 		ADAU1977_REG_DC_HPF_CAL, (x) + 3, 1, 0)
 
 static const struct snd_kcontrol_new adau1977_snd_controls[] = {
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 06/12] trivial: MIPS: Netlogic: xlp/ahci-init-xlp2.c fix 0x0x prefixes
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
                   ` (4 preceding siblings ...)
  2015-04-28 11:11 ` [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/ Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-04-28 11:11 ` [PATCH 07/12] trivial: [media] cx25821: cx25821-medusa-reg.h: fix 0x0x prefix Antonio Ospite
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Antonio Ospite, Ralf Baechle, linux-mips

Fix the 0x0x prefix in integer constants, in this case the registers
interval is actually 0x8065 .. 0x80A4 as confirmed some lines above in
the code.

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
---
 arch/mips/netlogic/xlp/ahci-init-xlp2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/netlogic/xlp/ahci-init-xlp2.c b/arch/mips/netlogic/xlp/ahci-init-xlp2.c
index 7b066a4..c11b9c7 100644
--- a/arch/mips/netlogic/xlp/ahci-init-xlp2.c
+++ b/arch/mips/netlogic/xlp/ahci-init-xlp2.c
@@ -152,7 +152,7 @@ static const u8 sata_phy_config1[]  = {
 	0xC9, 0xC9, 0x07, 0x07, 0x18, 0x18, 0x01, 0x01, 0x22, 0x00
 };
 
-/* SATA PHY config for register block 2 0x0x8065 .. 0x0x80A4 */
+/* SATA PHY config for register block 2 0x8065 .. 0x80A4 */
 static const u8 sata_phy_config2[]  = {
 	0xAA, 0x00, 0x4C, 0xC9, 0xC9, 0x07, 0x07, 0x18,
 	0x18, 0x05, 0x0C, 0x10, 0x00, 0x10, 0x00, 0xFF,
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 07/12] trivial: [media] cx25821: cx25821-medusa-reg.h: fix 0x0x prefix
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
                   ` (5 preceding siblings ...)
  2015-04-28 11:11 ` [PATCH 06/12] trivial: MIPS: Netlogic: xlp/ahci-init-xlp2.c fix 0x0x prefixes Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-05-26 13:28   ` Jiri Kosina
  2015-04-28 11:11 ` [PATCH 08/12] trivial: net: atl1e: atl1e_hw.h: " Antonio Ospite
  2015-04-28 11:11 ` [PATCH 10/12] trivial: net: systemport: bcmsysport.h: " Antonio Ospite
  8 siblings, 1 reply; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Antonio Ospite, Mauro Carvalho Chehab, linux-media

Fix the 0x0x prefix in integer constants.

In this case a padding 0 must also be inserted to make the constants
look like all the other 16 bits ones.

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Cc: linux-media@vger.kernel.org
---
 drivers/media/pci/cx25821/cx25821-medusa-reg.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/media/pci/cx25821/cx25821-medusa-reg.h b/drivers/media/pci/cx25821/cx25821-medusa-reg.h
index c98ac94..2e10643 100644
--- a/drivers/media/pci/cx25821/cx25821-medusa-reg.h
+++ b/drivers/media/pci/cx25821/cx25821-medusa-reg.h
@@ -84,9 +84,9 @@
 #define	ABIST_BIN4_VGA3				0x01D4
 #define	ABIST_BIN5_VGA4				0x01D8
 #define	ABIST_BIN6_VGA5				0x01DC
-#define	ABIST_BIN7_VGA6				0x0x1E0
-#define	ABIST_CLAMP_A				0x0x1E4
-#define	ABIST_CLAMP_B				0x0x1E8
+#define	ABIST_BIN7_VGA6				0x01E0
+#define	ABIST_CLAMP_A				0x01E4
+#define	ABIST_CLAMP_B				0x01E8
 #define	ABIST_CLAMP_C				0x01EC
 #define	ABIST_CLAMP_D				0x01F0
 #define	ABIST_CLAMP_E				0x01F4
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 08/12] trivial: net: atl1e: atl1e_hw.h: fix 0x0x prefix
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
                   ` (6 preceding siblings ...)
  2015-04-28 11:11 ` [PATCH 07/12] trivial: [media] cx25821: cx25821-medusa-reg.h: fix 0x0x prefix Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-04-29 18:56   ` David Miller
  2015-04-28 11:11 ` [PATCH 10/12] trivial: net: systemport: bcmsysport.h: " Antonio Ospite
  8 siblings, 1 reply; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Antonio Ospite, Jay Cliburn, Chris Snook, netdev

Fix the 0x0x prefix in an integer constant.

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Jay Cliburn <jcliburn@gmail.com>
Cc: Chris Snook <chris.snook@gmail.com>
Cc: netdev@vger.kernel.org
---
 drivers/net/ethernet/atheros/atl1e/atl1e_hw.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/atheros/atl1e/atl1e_hw.h b/drivers/net/ethernet/atheros/atl1e/atl1e_hw.h
index 74df16a..88a6271 100644
--- a/drivers/net/ethernet/atheros/atl1e/atl1e_hw.h
+++ b/drivers/net/ethernet/atheros/atl1e/atl1e_hw.h
@@ -129,7 +129,7 @@ s32 atl1e_restart_autoneg(struct atl1e_hw *hw);
 #define     TWSI_CTRL_LD_SLV_ADDR_SHIFT     8
 #define     TWSI_CTRL_SW_LDSTART            0x800
 #define     TWSI_CTRL_HW_LDSTART            0x1000
-#define     TWSI_CTRL_SMB_SLV_ADDR_MASK     0x0x7F
+#define     TWSI_CTRL_SMB_SLV_ADDR_MASK     0x7F
 #define     TWSI_CTRL_SMB_SLV_ADDR_SHIFT    15
 #define     TWSI_CTRL_LD_EXIST              0x400000
 #define     TWSI_CTRL_READ_FREQ_SEL_MASK    0x3
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* [PATCH 10/12] trivial: net: systemport: bcmsysport.h: fix 0x0x prefix
       [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
                   ` (7 preceding siblings ...)
  2015-04-28 11:11 ` [PATCH 08/12] trivial: net: atl1e: atl1e_hw.h: " Antonio Ospite
@ 2015-04-28 11:11 ` Antonio Ospite
  2015-04-29 18:56   ` David Miller
  8 siblings, 1 reply; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 11:11 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Antonio Ospite, Florian Fainelli, netdev

Fix the 0x0x prefix in an integer constant.

In this case, while at it, also fix a typo (s/unitcast/unicast/).

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: netdev@vger.kernel.org
---
 drivers/net/ethernet/broadcom/bcmsysport.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/broadcom/bcmsysport.h b/drivers/net/ethernet/broadcom/bcmsysport.h
index 7e3d87a..e2c043e 100644
--- a/drivers/net/ethernet/broadcom/bcmsysport.h
+++ b/drivers/net/ethernet/broadcom/bcmsysport.h
@@ -543,7 +543,7 @@ struct bcm_sysport_tx_counters {
 	u32	jbr;		/* RO # of xmited jabber count*/
 	u32	bytes;		/* RO # of xmited byte count */
 	u32	pok;		/* RO # of xmited good pkt */
-	u32	uc;		/* RO (0x0x4f0)# of xmited unitcast pkt */
+	u32	uc;		/* RO (0x4f0) # of xmited unicast pkt */
 };
 
 struct bcm_sysport_mib {
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* Re: [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/
  2015-04-28 11:11 ` [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/ Antonio Ospite
@ 2015-04-28 12:20   ` Lars-Peter Clausen
  2015-04-28 16:00   ` Mark Brown
  1 sibling, 0 replies; 21+ messages in thread
From: Lars-Peter Clausen @ 2015-04-28 12:20 UTC (permalink / raw)
  To: Antonio Ospite, Jiri Kosina; +Cc: alsa-devel, Mark Brown

On 04/28/2015 01:11 PM, Antonio Ospite wrote:
> Signed-off-by: Antonio Ospite <ao2@ao2.it>
> Cc: Lars-Peter Clausen <lars@metafoo.de>
> Cc: Mark Brown <broonie@kernel.org>
> Cc: alsa-devel@alsa-project.org

Acked-by: Lars-Peter Clausen <lars@metafoo.de>

Thanks.

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/
  2015-04-28 11:11 ` [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/ Antonio Ospite
@ 2015-04-28 14:40   ` Ard Biesheuvel
  2015-04-29  9:13     ` [PATCHv2] " Antonio Ospite
  2015-05-06 10:37   ` [PATCH 04/12] trivial: " Russell King - ARM Linux
  1 sibling, 1 reply; 21+ messages in thread
From: Ard Biesheuvel @ 2015-04-28 14:40 UTC (permalink / raw)
  To: linux-arm-kernel

On 28 April 2015 at 13:11, Antonio Ospite <ao2@ao2.it> wrote:
> Signed-off-by: Antonio Ospite <ao2@ao2.it>
> Cc: Russell King <linux@arm.linux.org.uk>
> Cc: Christoffer Dall <christoffer.dall@linaro.org>
> Cc: linux-arm-kernel at lists.infradead.org
> ---
>  arch/arm/lib/lib1funcs.S | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/lib/lib1funcs.S b/arch/arm/lib/lib1funcs.S
> index 947567f..af2267f 100644
> --- a/arch/arm/lib/lib1funcs.S
> +++ b/arch/arm/lib/lib1funcs.S
> @@ -167,7 +167,7 @@ Boston, MA 02111-1307, USA.  */
>
>  #endif
>
> -       @ Perform all needed substractions to keep only the reminder.
> +       @ Perform all needed subtractions to keep only the reminder.

While you're at it, you should perhaps correct the other typo in this
line as well?
(remAinder)

>         @ Do comparisons in batch of 4 first.
>         subs    \order, \order, #3              @ yes, 3 is intended here
>         blt     2f
> @@ -189,7 +189,7 @@ Boston, MA 02111-1307, USA.  */
>         teqne   \dividend, #0
>         beq     5f
>
> -       @ Either 1, 2 or 3 comparison/substractions are left.
> +       @ Either 1, 2 or 3 comparison/subtractions are left.

Same here -> comparisonS (plural)

>  2:     cmn     \order, #2
>         blt     4f
>         beq     3f
> --
> 2.1.4
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/
  2015-04-28 11:11 ` [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/ Antonio Ospite
  2015-04-28 12:20   ` Lars-Peter Clausen
@ 2015-04-28 16:00   ` Mark Brown
  2015-04-28 21:27     ` Antonio Ospite
  1 sibling, 1 reply; 21+ messages in thread
From: Mark Brown @ 2015-04-28 16:00 UTC (permalink / raw)
  To: Antonio Ospite; +Cc: alsa-devel, Lars-Peter Clausen, Jiri Kosina


[-- Attachment #1.1: Type: text/plain, Size: 236 bytes --]

On Tue, Apr 28, 2015 at 01:11:24PM +0200, Antonio Ospite wrote:
> Signed-off-by: Antonio Ospite <ao2@ao2.it>

Applied, but please use subject lines reflecting the style for the
subsystem and don't send only a single patch for a series.

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/
  2015-04-28 16:00   ` Mark Brown
@ 2015-04-28 21:27     ` Antonio Ospite
  2015-04-29 10:23       ` Mark Brown
  0 siblings, 1 reply; 21+ messages in thread
From: Antonio Ospite @ 2015-04-28 21:27 UTC (permalink / raw)
  To: Mark Brown; +Cc: alsa-devel, Lars-Peter Clausen, Jiri Kosina

On Tue, 28 Apr 2015 17:00:24 +0100
Mark Brown <broonie@kernel.org> wrote:

> On Tue, Apr 28, 2015 at 01:11:24PM +0200, Antonio Ospite wrote:
> > Signed-off-by: Antonio Ospite <ao2@ao2.it>
> 
> Applied, but please use subject lines reflecting the style for the
> subsystem and don't send only a single patch for a series.

Hi Mark,

I tried to follow the subject style for the subsystem, but then I
prefixed it with "trivial" to highlight that I was sending an aggregate
set of unrelated patches to trivial@kernel.org, that's also why I didn't
want to CC everyone on every patch: to reduce noise.

Maybe involving trivial@kernel.org for changes which apply to a
_specific_ subsystem is not necessary at all, next time I will just
aggregate by subsystem.

As a rule of thumb I will use trivial@kernel.org only for trivial
changes which span different subsystems and still make sense to have in
a single patch.

Thanks for making me notice that.

Ciao,
   Antonio

-- 
Antonio Ospite
http://ao2.it

A: Because it messes up the order in which people normally read text.
   See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCHv2] ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/
  2015-04-28 14:40   ` Ard Biesheuvel
@ 2015-04-29  9:13     ` Antonio Ospite
  0 siblings, 0 replies; 21+ messages in thread
From: Antonio Ospite @ 2015-04-29  9:13 UTC (permalink / raw)
  To: linux-arm-kernel

While at it also fix some other typos in the affected lines:
  s/reminder/remainder/
  s/comparison/comparisons/

Signed-off-by: Antonio Ospite <ao2@ao2.it>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Christoffer Dall <christoffer.dall@linaro.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: linux-arm-kernel at lists.infradead.org
---

Changes since v1:
  - fix the other typos as suggested by Ard.

Ciao,
   Antonio

 arch/arm/lib/lib1funcs.S | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/lib/lib1funcs.S b/arch/arm/lib/lib1funcs.S
index 947567f..055c00f 100644
--- a/arch/arm/lib/lib1funcs.S
+++ b/arch/arm/lib/lib1funcs.S
@@ -167,7 +167,7 @@ Boston, MA 02111-1307, USA.  */
 
 #endif
 
-	@ Perform all needed substractions to keep only the reminder.
+	@ Perform all needed subtractions to keep only the remainder.
 	@ Do comparisons in batch of 4 first.
 	subs	\order, \order, #3		@ yes, 3 is intended here
 	blt	2f
@@ -189,7 +189,7 @@ Boston, MA 02111-1307, USA.  */
 	teqne	\dividend, #0
 	beq	5f
 
-	@ Either 1, 2 or 3 comparison/substractions are left.
+	@ Either 1, 2 or 3 comparisons/subtractions are left.
 2:	cmn	\order, #2
 	blt	4f
 	beq	3f
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 21+ messages in thread

* Re: [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/
  2015-04-28 21:27     ` Antonio Ospite
@ 2015-04-29 10:23       ` Mark Brown
  0 siblings, 0 replies; 21+ messages in thread
From: Mark Brown @ 2015-04-29 10:23 UTC (permalink / raw)
  To: Antonio Ospite; +Cc: alsa-devel, Lars-Peter Clausen, Jiri Kosina


[-- Attachment #1.1: Type: text/plain, Size: 839 bytes --]

On Tue, Apr 28, 2015 at 11:27:58PM +0200, Antonio Ospite wrote:

> I tried to follow the subject style for the subsystem, but then I
> prefixed it with "trivial" to highlight that I was sending an aggregate
> set of unrelated patches to trivial@kernel.org, that's also why I didn't
> want to CC everyone on every patch: to reduce noise.

That's not really helpful - it means that the patch is more likely to be
missed and that the patch sticks out in the changelog.

> Maybe involving trivial@kernel.org for changes which apply to a
> _specific_ subsystem is not necessary at all, next time I will just
> aggregate by subsystem.

That's generally better, the expectation should be that maintainers are
going to apply even trivial patches and it does make life easier if
things go that way (less chance of conflicting changes for example).

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

[-- Attachment #2: Type: text/plain, Size: 0 bytes --]



^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 10/12] trivial: net: systemport: bcmsysport.h: fix 0x0x prefix
  2015-04-28 11:11 ` [PATCH 10/12] trivial: net: systemport: bcmsysport.h: " Antonio Ospite
@ 2015-04-29 18:56   ` David Miller
  0 siblings, 0 replies; 21+ messages in thread
From: David Miller @ 2015-04-29 18:56 UTC (permalink / raw)
  To: ao2; +Cc: trivial, f.fainelli, netdev

From: Antonio Ospite <ao2@ao2.it>
Date: Tue, 28 Apr 2015 13:11:29 +0200

> Fix the 0x0x prefix in an integer constant.
> 
> In this case, while at it, also fix a typo (s/unitcast/unicast/).
> 
> Signed-off-by: Antonio Ospite <ao2@ao2.it>

Applied.

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 08/12] trivial: net: atl1e: atl1e_hw.h: fix 0x0x prefix
  2015-04-28 11:11 ` [PATCH 08/12] trivial: net: atl1e: atl1e_hw.h: " Antonio Ospite
@ 2015-04-29 18:56   ` David Miller
  0 siblings, 0 replies; 21+ messages in thread
From: David Miller @ 2015-04-29 18:56 UTC (permalink / raw)
  To: ao2; +Cc: trivial, jcliburn, chris.snook, netdev

From: Antonio Ospite <ao2@ao2.it>
Date: Tue, 28 Apr 2015 13:11:27 +0200

> Fix the 0x0x prefix in an integer constant.
> 
> Signed-off-by: Antonio Ospite <ao2@ao2.it>

Applied.

^ permalink raw reply	[flat|nested] 21+ messages in thread

* [Cluster-devel] [PATCH 02/12] trivial: GFS2: inode.c: indent with TABs, not spaces
  2015-04-28 11:11 ` [Cluster-devel] [PATCH 02/12] trivial: GFS2: inode.c: indent with TABs, not spaces Antonio Ospite
@ 2015-05-01 18:02   ` Bob Peterson
  0 siblings, 0 replies; 21+ messages in thread
From: Bob Peterson @ 2015-05-01 18:02 UTC (permalink / raw)
  To: cluster-devel.redhat.com

----- Original Message -----
> Follow the same style used for the other functions in the same file.
> 
> Signed-off-by: Antonio Ospite <ao2@ao2.it>
> Cc: Steven Whitehouse <swhiteho@redhat.com>
> Cc: Bob Peterson <rpeterso@redhat.com>
> Cc: cluster-devel at redhat.com
> ---
>  fs/gfs2/inode.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
> index 1b3ca7a..efd6bfb 100644
> --- a/fs/gfs2/inode.c
> +++ b/fs/gfs2/inode.c
> @@ -1227,8 +1227,8 @@ static int gfs2_mknod(struct inode *dir, struct dentry
> *dentry, umode_t mode,
>   */
>  
>  static int gfs2_atomic_open(struct inode *dir, struct dentry *dentry,
> -                            struct file *file, unsigned flags,
> -                            umode_t mode, int *opened)
> +			    struct file *file, unsigned flags,
> +			    umode_t mode, int *opened)
>  {
>  	struct dentry *d;
>  	bool excl = !!(flags & O_EXCL);
> --
> 2.1.4

Hi,

Thanks. This is now applied to the for-next branch of the linux-gfs2 tree:
https://git.kernel.org/cgit/linux/kernel/git/gfs2/linux-gfs2.git/commit/fs/gfs2?h=for-next&id=86fbca4923f956dae31247e68dc73ffdfd6e5cb0

Regards,

Bob Peterson
Red Hat File Systems



^ permalink raw reply	[flat|nested] 21+ messages in thread

* [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/
  2015-04-28 11:11 ` [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/ Antonio Ospite
  2015-04-28 14:40   ` Ard Biesheuvel
@ 2015-05-06 10:37   ` Russell King - ARM Linux
  1 sibling, 0 replies; 21+ messages in thread
From: Russell King - ARM Linux @ 2015-05-06 10:37 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Apr 28, 2015 at 01:11:23PM +0200, Antonio Ospite wrote:
> Signed-off-by: Antonio Ospite <ao2@ao2.it>
> Cc: Russell King <linux@arm.linux.org.uk>

Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>

Thanks.

> Cc: Christoffer Dall <christoffer.dall@linaro.org>
> Cc: linux-arm-kernel at lists.infradead.org
> ---
>  arch/arm/lib/lib1funcs.S | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/lib/lib1funcs.S b/arch/arm/lib/lib1funcs.S
> index 947567f..af2267f 100644
> --- a/arch/arm/lib/lib1funcs.S
> +++ b/arch/arm/lib/lib1funcs.S
> @@ -167,7 +167,7 @@ Boston, MA 02111-1307, USA.  */
>  
>  #endif
>  
> -	@ Perform all needed substractions to keep only the reminder.
> +	@ Perform all needed subtractions to keep only the reminder.
>  	@ Do comparisons in batch of 4 first.
>  	subs	\order, \order, #3		@ yes, 3 is intended here
>  	blt	2f
> @@ -189,7 +189,7 @@ Boston, MA 02111-1307, USA.  */
>  	teqne	\dividend, #0
>  	beq	5f
>  
> -	@ Either 1, 2 or 3 comparison/substractions are left.
> +	@ Either 1, 2 or 3 comparison/subtractions are left.
>  2:	cmn	\order, #2
>  	blt	4f
>  	beq	3f
> -- 
> 2.1.4
> 

-- 
FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up
according to speedtest.net.

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 07/12] trivial: [media] cx25821: cx25821-medusa-reg.h: fix 0x0x prefix
  2015-04-28 11:11 ` [PATCH 07/12] trivial: [media] cx25821: cx25821-medusa-reg.h: fix 0x0x prefix Antonio Ospite
@ 2015-05-26 13:28   ` Jiri Kosina
  0 siblings, 0 replies; 21+ messages in thread
From: Jiri Kosina @ 2015-05-26 13:28 UTC (permalink / raw)
  To: Antonio Ospite; +Cc: Mauro Carvalho Chehab, linux-media

On Tue, 28 Apr 2015, Antonio Ospite wrote:

> Fix the 0x0x prefix in integer constants.
> 
> In this case a padding 0 must also be inserted to make the constants
> look like all the other 16 bits ones.
> 
> Signed-off-by: Antonio Ospite <ao2@ao2.it>
> Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
> Cc: linux-media@vger.kernel.org

Doesn't seem to be in linux-next as of today. I am picking it up.

> ---
>  drivers/media/pci/cx25821/cx25821-medusa-reg.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/media/pci/cx25821/cx25821-medusa-reg.h b/drivers/media/pci/cx25821/cx25821-medusa-reg.h
> index c98ac94..2e10643 100644
> --- a/drivers/media/pci/cx25821/cx25821-medusa-reg.h
> +++ b/drivers/media/pci/cx25821/cx25821-medusa-reg.h
> @@ -84,9 +84,9 @@
>  #define	ABIST_BIN4_VGA3				0x01D4
>  #define	ABIST_BIN5_VGA4				0x01D8
>  #define	ABIST_BIN6_VGA5				0x01DC
> -#define	ABIST_BIN7_VGA6				0x0x1E0
> -#define	ABIST_CLAMP_A				0x0x1E4
> -#define	ABIST_CLAMP_B				0x0x1E8
> +#define	ABIST_BIN7_VGA6				0x01E0
> +#define	ABIST_CLAMP_A				0x01E4
> +#define	ABIST_CLAMP_B				0x01E8
>  #define	ABIST_CLAMP_C				0x01EC
>  #define	ABIST_CLAMP_D				0x01F0
>  #define	ABIST_CLAMP_E				0x01F4
> -- 
> 2.1.4
> 

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 21+ messages in thread

* Re: [PATCH 01/12] trivial: HID: Makefile: fix alignment of objs-* entries
  2015-04-28 11:11 ` [PATCH 01/12] trivial: HID: Makefile: fix alignment of objs-* entries Antonio Ospite
@ 2015-05-26 13:32   ` Jiri Kosina
  0 siblings, 0 replies; 21+ messages in thread
From: Jiri Kosina @ 2015-05-26 13:32 UTC (permalink / raw)
  To: Antonio Ospite; +Cc: linux-input

On Tue, 28 Apr 2015, Antonio Ospite wrote:

> Most of the entries are aligned with TABs, fix those which are not.
> 
> Signed-off-by: Antonio Ospite <ao2@ao2.it>

Applied, thanks.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2015-05-26 13:32 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1430219491-5076-1-git-send-email-ao2@ao2.it>
2015-04-28 11:11 ` [PATCH 01/12] trivial: HID: Makefile: fix alignment of objs-* entries Antonio Ospite
2015-05-26 13:32   ` Jiri Kosina
2015-04-28 11:11 ` [Cluster-devel] [PATCH 02/12] trivial: GFS2: inode.c: indent with TABs, not spaces Antonio Ospite
2015-05-01 18:02   ` Bob Peterson
2015-04-28 11:11 ` [PATCH 03/12] trivial: ASoC: pxa: pxa-ssp.c: " Antonio Ospite
2015-04-28 11:11 ` [PATCH 04/12] trivial: ARM: lib/lib1funcs.S: fix typo s/substractions/subtractions/ Antonio Ospite
2015-04-28 14:40   ` Ard Biesheuvel
2015-04-29  9:13     ` [PATCHv2] " Antonio Ospite
2015-05-06 10:37   ` [PATCH 04/12] trivial: " Russell King - ARM Linux
2015-04-28 11:11 ` [PATCH 05/12] trivial: ASoC: adau1977: fix typo s/Substraction/Subtraction/ Antonio Ospite
2015-04-28 12:20   ` Lars-Peter Clausen
2015-04-28 16:00   ` Mark Brown
2015-04-28 21:27     ` Antonio Ospite
2015-04-29 10:23       ` Mark Brown
2015-04-28 11:11 ` [PATCH 06/12] trivial: MIPS: Netlogic: xlp/ahci-init-xlp2.c fix 0x0x prefixes Antonio Ospite
2015-04-28 11:11 ` [PATCH 07/12] trivial: [media] cx25821: cx25821-medusa-reg.h: fix 0x0x prefix Antonio Ospite
2015-05-26 13:28   ` Jiri Kosina
2015-04-28 11:11 ` [PATCH 08/12] trivial: net: atl1e: atl1e_hw.h: " Antonio Ospite
2015-04-29 18:56   ` David Miller
2015-04-28 11:11 ` [PATCH 10/12] trivial: net: systemport: bcmsysport.h: " Antonio Ospite
2015-04-29 18:56   ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.