Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d28edd1b authored by Jean-Christophe PLAGNIOL-VILLARD's avatar Jean-Christophe PLAGNIOL-VILLARD
Browse files

ARM: at91: make ecc register base soc independant

parent 80e91cb8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -398,8 +398,8 @@ static struct resource nand_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= AT91_BASE_SYS + AT91_ECC,
		.end	= AT91_BASE_SYS + AT91_ECC + SZ_512 - 1,
		.start	= AT91CAP9_BASE_ECC,
		.end	= AT91CAP9_BASE_ECC + SZ_512 - 1,
		.flags	= IORESOURCE_MEM,
	}
};
+2 −2
Original line number Diff line number Diff line
@@ -399,8 +399,8 @@ static struct resource nand_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= AT91_BASE_SYS + AT91_ECC,
		.end	= AT91_BASE_SYS + AT91_ECC + SZ_512 - 1,
		.start	= AT91SAM9260_BASE_ECC,
		.end	= AT91SAM9260_BASE_ECC + SZ_512 - 1,
		.flags	= IORESOURCE_MEM,
	}
};
+2 −2
Original line number Diff line number Diff line
@@ -473,8 +473,8 @@ static struct resource nand_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= AT91_BASE_SYS + AT91_ECC0,
		.end	= AT91_BASE_SYS + AT91_ECC0 + SZ_512 - 1,
		.start	= AT91SAM9263_BASE_ECC0,
		.end	= AT91SAM9263_BASE_ECC0 + SZ_512 - 1,
		.flags	= IORESOURCE_MEM,
	}
};
+2 −2
Original line number Diff line number Diff line
@@ -529,8 +529,8 @@ static struct resource nand_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= AT91_BASE_SYS + AT91_ECC,
		.end	= AT91_BASE_SYS + AT91_ECC + SZ_512 - 1,
		.start	= AT91SAM9G45_BASE_ECC,
		.end	= AT91SAM9G45_BASE_ECC + SZ_512 - 1,
		.flags	= IORESOURCE_MEM,
	}
};
+2 −2
Original line number Diff line number Diff line
@@ -248,8 +248,8 @@ static struct resource nand_resources[] = {
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= AT91_BASE_SYS + AT91_ECC,
		.end	= AT91_BASE_SYS + AT91_ECC + SZ_512 - 1,
		.start	= AT91SAM9RL_BASE_ECC,
		.end	= AT91SAM9RL_BASE_ECC + SZ_512 - 1,
		.flags	= IORESOURCE_MEM,
	}
};
Loading