123456789101112131415161718192021222324252627282930313233343536373839 |
- /*====================================================================*
- *
- * Copyright (c) 2013 Qualcomm Atheros, Inc.
- *
- * All rights reserved.
- *
- *====================================================================*/
- /*====================================================================*
- *
- * signed EraseFlashMemory3 (struct plc * plc);
- *
- * plc.h
- *
- * select the appropriate function based on the PLC device type;
- *
- * Contributor(s):
- * Charles Maier <cmaier@qca.qualcomm.com>
- *
- *--------------------------------------------------------------------*/
- #ifndef ERASEFLASHMEMORY3_SOURCE
- #define ERASEFLASHMEMORY3_SOURCE
- #include <string.h>
- #include "../plc/plc.h"
- #include "../nda/nda.h"
- signed EraseFlashMemory3 (struct plc * plc)
- {
- return (~ AccessLevelPTS (plc)? EraseFlashMemory2 (plc): (-1));
- }
- #endif
|