[PATCH] CORE: adding mtd_get_partition_physaddr()

Josh Boyer jdub at us.ibm.com
Tue Aug 29 13:13:47 EDT 2006


On Mon, 2006-08-28 at 21:44 -0700, Jared Hulbert wrote:
> This is to allow axfs to get the physical address on the flash of it's
> partition.
> 
> Signed-off-by: Jared Hulbert <jaredeh at gmail.com>
> 
> diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c
> index 06a9303..37aed8a 100644
> --- a/drivers/mtd/mtdpart.c
> +++ b/drivers/mtd/mtdpart.c
> @@ -40,6 +40,17 @@ struct mtd_part {
>   */
>  #define PART(x)  ((struct mtd_part *)(x))
> 
> +/*
> + * Allow other modules to get the physical address of a given partition
> + */
> +void * mtd_get_partition_physaddr (struct mtd_info *mtd)

Nit: No space between the paren and the function name please.

>  /*
>   * MTD methods which simply translate the effective address and pass through
> diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h
> index da6b3d6..adf6207 100644
> --- a/include/linux/mtd/partitions.h
> +++ b/include/linux/mtd/partitions.h
> @@ -68,6 +68,7 @@ extern int register_mtd_parser(struct mt
>  extern int deregister_mtd_parser(struct mtd_part_parser *parser);
>  extern int parse_mtd_partitions(struct mtd_info *master, const char **types,
>  				struct mtd_partition **pparts, unsigned long origin);
> +extern void * mtd_get_partition_physaddr(struct mtd_info *mtd);

Couldn't this be a proper prototype instead of an extern?

josh





More information about the linux-mtd mailing list