linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* Potential namespace problem for 'struct flash_platfrom_data'
@ 2010-04-29 20:06 H Hartley Sweeten
  2010-04-29 20:19 ` Russell King - ARM Linux
  0 siblings, 1 reply; 4+ messages in thread
From: H Hartley Sweeten @ 2010-04-29 20:06 UTC (permalink / raw)
  To: linux-arm-kernel

Hello all,

I was looking at an issue with a spi flash device and noticed a
potential namespace problem.

arch/arm/include/asm/mach/flash.h has this:

struct flash_platform_data {
	const char	*map_name;
	const char	*name;
	unsigned int	width;
	int		(*init)(void);
	void		(*exit)(void);
	void		(*set_vpp)(int on);
	void		(*mmcontrol)(struct mtd_info *mtd, int sync_read);
	struct mtd_partition *parts;
	unsigned int	nr_parts;
};

and include/linux/spi/flash.h has this:

struct flash_platform_data {
	char		*name;
	struct mtd_partition *parts;
	unsigned int	nr_parts;

	char		*type;

	/* we'll likely add more ... use JEDEC IDs, etc */
};

Should anything be done?

Regards,
Hartley

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

end of thread, other threads:[~2010-04-29 22:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-29 20:06 Potential namespace problem for 'struct flash_platfrom_data' H Hartley Sweeten
2010-04-29 20:19 ` Russell King - ARM Linux
2010-04-29 20:35   ` H Hartley Sweeten
2010-04-29 22:47     ` Grant Likely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).