Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1410841 > unrolled thread
| Started by | Ashwin <ashwinravichandran24@gmail.com> |
|---|---|
| First post | 2016-06-01 08:10 +0200 |
| Last post | 2016-06-01 08:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 2649/2649] Staging: comedi : fixed a camel case style issue Ashwin <ashwinravichandran24@gmail.com> - 2016-06-01 08:10 +0200
Re: [PATCH 2649/2649] Staging: comedi : fixed a camel case style issue Greg KH <gregkh@linuxfoundation.org> - 2016-06-01 08:20 +0200
| From | Ashwin <ashwinravichandran24@gmail.com> |
|---|---|
| Date | 2016-06-01 08:10 +0200 |
| Subject | [PATCH 2649/2649] Staging: comedi : fixed a camel case style issue |
| Message-ID | <rF7vP-4JC-15@gated-at.bofh.it> |
From: Ashwin R <ashwinravichandran24@gmail.com>
Fixed a coding style issue.
Signed-off-by: Ashwin R <ashwinravichandran24@gmail.com>
---
drivers/staging/comedi/drivers/addi-data/hwdrv_apci3501.c | 2 +-
drivers/staging/comedi/drivers/addi_apci_3501.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3501.c b/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3501.c
index 3757074..9c27999 100644
--- a/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3501.c
+++ b/drivers/staging/comedi/drivers/addi-data/hwdrv_apci3501.c
@@ -28,7 +28,7 @@ static int apci3501_config_insn_timer(struct comedi_device *dev,
data[0] != ADDIDATA_TIMER)
return -EINVAL;
- devpriv->tsk_Current = current;
+ devpriv->tsk_current = current;
devpriv->timer_mode = data[0];
diff --git a/drivers/staging/comedi/drivers/addi_apci_3501.c b/drivers/staging/comedi/drivers/addi_apci_3501.c
index 40ff914..b2f6712 100644
--- a/drivers/staging/comedi/drivers/addi_apci_3501.c
+++ b/drivers/staging/comedi/drivers/addi_apci_3501.c
@@ -68,7 +68,7 @@
struct apci3501_private {
unsigned long amcc;
unsigned long tcw;
- struct task_struct *tsk_Current;
+ struct task_struct *tsk_current;
unsigned char timer_mode;
};
@@ -273,7 +273,7 @@ static irqreturn_t apci3501_interrupt(int irq, void *d)
}
/* Enable Interrupt Send a signal to from kernel to user space */
- send_sig(SIGIO, devpriv->tsk_Current, 0);
+ send_sig(SIGIO, devpriv->tsk_current, 0);
ctrl = inl(devpriv->tcw + ADDI_TCW_CTRL_REG);
ctrl &= ~(ADDI_TCW_CTRL_GATE | ADDI_TCW_CTRL_TRIG |
ADDI_TCW_CTRL_IRQ_ENA);
--
2.7.4
[toc] | [next] | [standalone]
| From | Greg KH <gregkh@linuxfoundation.org> |
|---|---|
| Date | 2016-06-01 08:20 +0200 |
| Subject | Re: [PATCH 2649/2649] Staging: comedi : fixed a camel case style issue |
| Message-ID | <rF7Fv-4MU-3@gated-at.bofh.it> |
| In reply to | #1410841 |
On Tue, May 31, 2016 at 11:00:01PM -0700, Ashwin wrote: > From: Ashwin R <ashwinravichandran24@gmail.com> I need a "full" name here, and in the signed-off-by line please. thanks, greg k-h
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web