mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 07:31:29 +00:00
gpio: wcove: Allow return negative error code from to_reg()
The type of to_reg() is unsigned int while it might return a negative error code. Callers are also expecting a signed type. For sake of type consistency replace unsigned int with plain int. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
fcce88d9ca
commit
282db906ee
@ -105,7 +105,7 @@ struct wcove_gpio {
|
||||
bool set_irq_mask;
|
||||
};
|
||||
|
||||
static inline unsigned int to_reg(int gpio, enum ctrl_register reg_type)
|
||||
static inline int to_reg(int gpio, enum ctrl_register reg_type)
|
||||
{
|
||||
unsigned int reg;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user