Skip to content

Commit

Permalink
MTD: handle pci_name() being const
Browse files Browse the repository at this point in the history
This changes the MTD core to handle pci_name() now returning a constant
string.

Cc: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Greg Kroah-Hartman committed Jul 22, 2008
1 parent 89bcb05 commit eadcf0d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions drivers/mtd/devices/block2mtd.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,7 @@ static struct block2mtd_dev *add_device(char *devname, int erase_size)
{
struct block_device *bdev;
struct block2mtd_dev *dev;
char *name;

if (!devname)
return NULL;
Expand Down Expand Up @@ -279,12 +280,13 @@ static struct block2mtd_dev *add_device(char *devname, int erase_size)

/* Setup the MTD structure */
/* make the name contain the block device in */
dev->mtd.name = kmalloc(sizeof("block2mtd: ") + strlen(devname),
name = kmalloc(sizeof("block2mtd: ") + strlen(devname) + 1,
GFP_KERNEL);
if (!dev->mtd.name)
if (!name)
goto devinit_err;

sprintf(dev->mtd.name, "block2mtd: %s", devname);
sprintf(name, "block2mtd: %s", devname);
dev->mtd.name = name;

dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK;
dev->mtd.erasesize = erase_size;
Expand Down
2 changes: 1 addition & 1 deletion include/linux/mtd/map.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ typedef union {
*/

struct map_info {
char *name;
const char *name;
unsigned long size;
resource_size_t phys;
#define NO_XIP (-1UL)
Expand Down
2 changes: 1 addition & 1 deletion include/linux/mtd/mtd.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ struct mtd_info {
u_int32_t oobavail; // Available OOB bytes per block

// Kernel-only stuff starts here.
char *name;
const char *name;
int index;

/* ecc layout structure pointer - read only ! */
Expand Down

0 comments on commit eadcf0d

Please sign in to comment.