* [PATCH] seeq:Make functions have a return type of bool in the file ether3.c
@ 2015-06-15 17:38 Nicholas Krause
0 siblings, 0 replies; only message in thread
From: Nicholas Krause @ 2015-06-15 17:38 UTC (permalink / raw)
To: linux; +Cc: netdev, linux-kernel, linux-arm-kernel
This makes the functions ether3_probe_bus_8 and ether3_probe_bus_16
have a return type of bool now due to their return statement being
only able to evaluate as either one or zero.
Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
---
drivers/net/ethernet/seeq/ether3.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/seeq/ether3.c b/drivers/net/ethernet/seeq/ether3.c
index bdac936..412c28e 100644
--- a/drivers/net/ethernet/seeq/ether3.c
+++ b/drivers/net/ethernet/seeq/ether3.c
@@ -354,7 +354,7 @@ ether3_init_for_open(struct net_device *dev)
ether3_outw(priv(dev)->regs.command | CMD_RXON, REG_COMMAND);
}
-static inline int
+static inline bool
ether3_probe_bus_8(struct net_device *dev, int val)
{
int write_low, write_high, read_low, read_high;
@@ -375,7 +375,7 @@ ether3_probe_bus_8(struct net_device *dev, int val)
return read_low == write_low && read_high == write_high;
}
-static inline int
+static inline bool
ether3_probe_bus_16(struct net_device *dev, int val)
{
int read_val;
--
2.1.4
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-06-15 17:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-15 17:38 [PATCH] seeq:Make functions have a return type of bool in the file ether3.c Nicholas Krause
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).