diff options
author | Vivien Didelot <vivien.didelot@gmail.com> | 2019-08-31 16:18:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-09-01 12:16:37 -0700 |
commit | f441ed0f4c89c14dd68ce477f513bae43509237e (patch) | |
tree | c2486b220f260d3d1c960802e038f8ceba1c531c /drivers/net/dsa/mv88e6xxx/chip.h | |
parent | 946bc2509eb88ff0c64dd727a11c5a29b6bc2574 (diff) | |
download | lwn-f441ed0f4c89c14dd68ce477f513bae43509237e.tar.gz lwn-f441ed0f4c89c14dd68ce477f513bae43509237e.zip |
net: dsa: mv88e6xxx: fix SERDES IRQ mapping
The current mv88e6xxx SERDES code checks for negative error code from
irq_find_mapping, while this function returns an unsigned integer. This
patch removes this dead code and simply returns 0 is no IRQ is found.
Signed-off-by: Vivien Didelot <vivien.didelot@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/mv88e6xxx/chip.h')
-rw-r--r-- | drivers/net/dsa/mv88e6xxx/chip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/dsa/mv88e6xxx/chip.h b/drivers/net/dsa/mv88e6xxx/chip.h index 421e8b84bec3..2016f51c868b 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.h +++ b/drivers/net/dsa/mv88e6xxx/chip.h @@ -199,7 +199,7 @@ struct mv88e6xxx_port { u64 vtu_member_violation; u64 vtu_miss_violation; u8 cmode; - int serdes_irq; + unsigned int serdes_irq; }; struct mv88e6xxx_chip { |