Skip to content

Commit

Permalink
leds: ns2: Change unsigned to unsigned int
Browse files Browse the repository at this point in the history
Use unsigned int, because it's preferred to unsigned.

Signed-off-by: Kitone Elvis Peter <elviskitone@gmail.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
  • Loading branch information
Kitone Elvis Peter authored and Jacek Anaszewski committed Aug 6, 2018
1 parent 6f7b0ba commit 2224f2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/leds/leds-ns2.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@

struct ns2_led_data {
struct led_classdev cdev;
unsigned cmd;
unsigned slow;
unsigned int cmd;
unsigned int slow;
bool can_sleep;
unsigned char sata; /* True when SATA mode active. */
rwlock_t rw_lock; /* Lock GPIOs. */
Expand Down

0 comments on commit 2224f2f

Please sign in to comment.