Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 347184
b: refs/heads/master
c: fafc3d6
h: refs/heads/master
v: v3
  • Loading branch information
Jonas Gorski authored and Artem Bityutskiy committed Nov 21, 2012
1 parent 0d20b43 commit 3ecec80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9ff407385441744ea4618f109535014c4b651f8a
refs/heads/master: fafc3d6880b28fe55af935fd43b23a29d61c537d
11 changes: 3 additions & 8 deletions trunk/drivers/mtd/bcm63xxpart.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ static int bcm63xx_parse_cfe_partitions(struct mtd_info *master,
unsigned int rootfsaddr, kerneladdr, spareaddr;
unsigned int rootfslen, kernellen, sparelen, totallen;
unsigned int cfelen, nvramlen;
int namelen = 0;
int i;
u32 computed_crc;
bool rootfs_first = false;
Expand Down Expand Up @@ -143,15 +142,11 @@ static int bcm63xx_parse_cfe_partitions(struct mtd_info *master,
}

/* Determine number of partitions */
namelen = 8;
if (rootfslen > 0) {
if (rootfslen > 0)
nrparts++;
namelen += 6;
}
if (kernellen > 0) {

if (kernellen > 0)
nrparts++;
namelen += 6;
}

/* Ask kernel for more memory */
parts = kzalloc(sizeof(*parts) * nrparts + 10 * nrparts, GFP_KERNEL);
Expand Down

0 comments on commit 3ecec80

Please sign in to comment.