Re: [PATCH] staging: dgnc: tty.c: fixes pointer syntax

2013-08-23 Thread Lidza Louina
On Fri, Aug 23, 2013 at 4:40 AM, Dan Carpenter wrote: > On Wed, Aug 21, 2013 at 01:27:15PM -0400, Lidza Louina wrote: >> This patch fixes the error: "foo* bar" should be "foo *bar". >> > > I have a nit pick about this changelog. It's not something to > resend over, of course, but for future patch

Re: [PATCH] staging: dgnc: tty.c: fixes pointer syntax

2013-08-23 Thread Dan Carpenter
On Wed, Aug 21, 2013 at 01:27:15PM -0400, Lidza Louina wrote: > This patch fixes the error: "foo* bar" should be "foo *bar". > I have a nit pick about this changelog. It's not something to resend over, of course, but for future patches. The word "fix" should only be used for bugfixes. The word

[PATCH] staging: dgnc: tty.c: fixes pointer syntax

2013-08-21 Thread Lidza Louina
This patch fixes the error: "foo* bar" should be "foo *bar". Signed-off-by: Lidza Louina --- drivers/staging/dgnc/dgnc_tty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/dgnc/dgnc_tty.c b/drivers/staging/dgnc/dgnc_tty.c index 5938c4a..da035a5 100644 ---