public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] net: Declare physical address as phys_addr_t unsigned type
@ 2015-01-14 15:00 Michal Simek
  2015-01-15 14:59 ` [U-Boot] " Tom Rini
  0 siblings, 1 reply; 3+ messages in thread
From: Michal Simek @ 2015-01-14 15:00 UTC (permalink / raw)
  To: u-boot

Use phys_addr_t instead of int for addresses.
Addresses can't be < 0.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 include/net.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/net.h b/include/net.h
index 18d279ebe737..3da35fe98188 100644
--- a/include/net.h
+++ b/include/net.h
@@ -81,7 +81,7 @@ enum eth_state_t {
 struct eth_device {
 	char name[16];
 	unsigned char enetaddr[6];
-	int iobase;
+	phys_addr_t iobase;
 	int state;

 	int  (*init) (struct eth_device *, bd_t *);
--
1.8.2.3

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150114/7b023f8e/attachment.pgp>

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

end of thread, other threads:[~2015-01-15 18:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-14 15:00 [U-Boot] [PATCH] net: Declare physical address as phys_addr_t unsigned type Michal Simek
2015-01-15 14:59 ` [U-Boot] " Tom Rini
2015-01-15 18:00   ` Michal Simek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox