Skip to content
Snippets Groups Projects
Commit ec3ab3f9 authored by Tom Rini's avatar Tom Rini
Browse files

Merge branch 'master' of git://git.denx.de/u-boot-socfpga

parents f8c6390b 43809cfa
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
};
aliases {
/* this allow the ethaddr uboot environmnet variable contents
/* this allow the ethaddr uboot environment variable contents
* to be added to the gmac1 device tree blob.
*/
ethernet0 = &gmac1;
......
......@@ -21,7 +21,7 @@
};
aliases {
/* this allow the ethaddr uboot environmnet variable contents
/* this allow the ethaddr uboot environment variable contents
* to be added to the gmac1 device tree blob.
*/
ethernet0 = &gmac1;
......
......@@ -15,6 +15,11 @@
};
aliases {
/*
* This allows the ethaddr uboot environment variable
* contents to be added to the gmac1 device tree blob.
*/
ethernet0 = &gmac1;
udc0 = &usb1;
};
......
......@@ -16,7 +16,7 @@
aliases {
/*
* This allows the ethaddr uboot environmnet variable
* This allows the ethaddr uboot environment variable
* contents to be added to the gmac1 device tree blob.
*/
ethernet0 = &gmac1;
......
......@@ -118,7 +118,7 @@ static void sdram_set_rule(struct sdram_prot_rule *prule)
/* Obtain the address bits */
lo_addr_bits = prule->sdram_start >> 20ULL;
hi_addr_bits = prule->sdram_end >> 20ULL;
hi_addr_bits = (prule->sdram_end - 1) >> 20ULL;
debug("sdram set rule start %x, %d\n", lo_addr_bits,
prule->sdram_start);
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment