Patch attached.
//Peter
On Thu, Jul 17, 2008 at 03:56:29AM +0200, Peter Stuge wrote:
flashrom: Winbond W39V040C and MSI K8T Neo2-F
W39V040C does standard JEDEC commands except chip erase so add a small driver. probe_w39v040c() prints the block lock pin status when a chip is found.
The Neo2 board enable matches on 8237-internal IDE and onboard NIC PCI IDs.
Many thanks to Danile McLellan for testing all of this on hardware!
Signed-off-by: Peter Stuge peter@stuge.se
Acked-by: Uwe Hermann uwe@hermann-uwe.de
Compile-tested by me.
+int probe_w39v040c(struct flashchip *flash) {
Please put opening braces of functions on an extra line as per coding-guidelines.
Uwe.
On Mon, Jul 21, 2008 at 04:31:08PM +0200, Uwe Hermann wrote:
Signed-off-by: Peter Stuge peter@stuge.se
Acked-by: Uwe Hermann uwe@hermann-uwe.de
Thanks! r3431
+int probe_w39v040c(struct flashchip *flash) {
Please put opening braces of functions on an extra line as per coding-guidelines.
Thanks for pointing that out. That is one thing about our style that I seem unable to learn to do. :)
//Peter