Release 4.11 arch/arm/mach-omap1/flash.c
/*
* Flash support for OMAP1
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/io.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <mach/tc.h>
#include "flash.h"
#include <mach/hardware.h>
void omap1_set_vpp(struct platform_device *pdev, int enable)
{
u32 l;
l = omap_readl(EMIFS_CONFIG);
if (enable)
l |= OMAP_EMIFS_CONFIG_WP;
else
l &= ~OMAP_EMIFS_CONFIG_WP;
omap_writel(l, EMIFS_CONFIG);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ladislav Michl | 38 | 86.36% | 1 | 33.33% |
Paul Parsons | 4 | 9.09% | 1 | 33.33% |
Marc Zyngier | 2 | 4.55% | 1 | 33.33% |
Total | 44 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ladislav Michl | 47 | 74.60% | 1 | 12.50% |
Tony Lindgren | 7 | 11.11% | 3 | 37.50% |
Paul Parsons | 4 | 6.35% | 1 | 12.50% |
Marc Zyngier | 2 | 3.17% | 1 | 12.50% |
Aaro Koskinen | 2 | 3.17% | 1 | 12.50% |
Arnd Bergmann | 1 | 1.59% | 1 | 12.50% |
Total | 63 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.