X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fflash%2Fnor%2Focl.c;h=6b297b0d366c929c8d8dfa18d8a25d797f9e72e5;hp=39e52c7295c81f23018b1db5c94aea00b8e19725;hb=8e44a9663df314ad527cca6687ea362c72e84a3f;hpb=9f0cba528a163645c8ecace413731c23310f2c26 diff --git a/src/flash/nor/ocl.c b/src/flash/nor/ocl.c index 39e52c7295..6b297b0d36 100644 --- a/src/flash/nor/ocl.c +++ b/src/flash/nor/ocl.c @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ #ifdef HAVE_CONFIG_H @@ -321,11 +321,6 @@ static int ocl_probe(struct flash_bank *bank) return ERROR_OK; } -static int ocl_info(struct flash_bank *bank, char *buf, int buf_size) -{ - return ERROR_OK; -} - static int ocl_auto_probe(struct flash_bank *bank) { struct ocl_priv *ocl = bank->driver_priv; @@ -346,6 +341,5 @@ struct flash_driver ocl_flash = { .probe = ocl_probe, .erase_check = ocl_erase_check, .protect_check = ocl_protect_check, - .info = ocl_info, .auto_probe = ocl_auto_probe, };