All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging: android: timed_gpio: fixed bare use of 'unsigned'
@ 2016-04-04 15:42 Shyam Saini
  2016-04-04 18:35 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Shyam Saini @ 2016-04-04 15:42 UTC (permalink / raw)
  To: gregkh; +Cc: arve, riandrews, devel, linux-kernel, Shyam Saini

'unsigned int gpio' is added in place of 'unsigned gpio'

Signed-off-by: Shyam Saini <mayhs11saini@gmail.com>
---
 drivers/staging/android/timed_gpio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/android/timed_gpio.c b/drivers/staging/android/timed_gpio.c
index 914fd10..8926b3f 100644
--- a/drivers/staging/android/timed_gpio.c
+++ b/drivers/staging/android/timed_gpio.c
@@ -29,7 +29,7 @@ struct timed_gpio_data {
 	struct timed_output_dev dev;
 	struct hrtimer timer;
 	spinlock_t lock;
-	unsigned gpio;
+	unsigned int gpio;
 	int max_timeout;
 	u8 active_low;
 };
-- 
1.9.1

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

* Re: [PATCH] Staging: android: timed_gpio: fixed bare use of 'unsigned'
  2016-04-04 15:42 [PATCH] Staging: android: timed_gpio: fixed bare use of 'unsigned' Shyam Saini
@ 2016-04-04 18:35 ` Greg KH
       [not found]   ` <CAOfkYf4BYsRXgFedYGHhBkg-urcbcyX5ZSNrgb_3v-_NzJGHvg@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2016-04-04 18:35 UTC (permalink / raw)
  To: Shyam Saini; +Cc: devel, arve, riandrews, linux-kernel

On Mon, Apr 04, 2016 at 09:12:28PM +0530, Shyam Saini wrote:
> 'unsigned int gpio' is added in place of 'unsigned gpio'
> 
> Signed-off-by: Shyam Saini <mayhs11saini@gmail.com>
> ---
>  drivers/staging/android/timed_gpio.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

This file is no longer in linux-next, please always work against that
tree, otherwise you duplicate work others have already done.

sorry,

greg k-h

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

* Re: [PATCH] Staging: android: timed_gpio: fixed bare use of 'unsigned'
       [not found]       ` <CAOfkYf6vWyk5W21V57fQDRmX+_LwL=PAp=L03HqQeLN_PajThw@mail.gmail.com>
@ 2016-04-05 13:35         ` Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2016-04-05 13:35 UTC (permalink / raw)
  To: Shyam Saini; +Cc: arve, riandrews, devel, linux-kernel

On Tue, Apr 05, 2016 at 07:02:54PM +0530, Shyam Saini wrote:
> hi,
> Sorry for duplicate work, actually i was following http://kernelnewbies.org/
> FirstKernelPatch .
> I updated the repository, then i watched this video  and finally submitted the
> duplicate patch.
> 
> As you said, I should work against linux -next.
> So, Now, i'm following https://www.kernel.org/doc/man-pages/linux-next.html.
> May you  please tell me whether i'm on right track or not?

Yes, that sounds correct, you can also read
Documentation/development_process/ to see all of the details as to how
linux-next ties into all of the other subsystem trees.

good luck!

greg k-h

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

end of thread, other threads:[~2016-04-05 13:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-04 15:42 [PATCH] Staging: android: timed_gpio: fixed bare use of 'unsigned' Shyam Saini
2016-04-04 18:35 ` Greg KH
     [not found]   ` <CAOfkYf4BYsRXgFedYGHhBkg-urcbcyX5ZSNrgb_3v-_NzJGHvg@mail.gmail.com>
     [not found]     ` <20160405024209.GA13306@kroah.com>
     [not found]       ` <CAOfkYf6vWyk5W21V57fQDRmX+_LwL=PAp=L03HqQeLN_PajThw@mail.gmail.com>
2016-04-05 13:35         ` Greg KH

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.