p@2550: /** p@2550: Network Driver for Beckhoff CCAT communication controller p@2550: Copyright (C) 2014 Beckhoff Automation GmbH p@2550: Author: Patrick Bruenn p@2550: p@2550: This program is free software; you can redistribute it and/or modify p@2550: it under the terms of the GNU General Public License as published by p@2550: the Free Software Foundation; either version 2 of the License, or p@2550: (at your option) any later version. p@2550: p@2550: This program is distributed in the hope that it will be useful, p@2550: but WITHOUT ANY WARRANTY; without even the implied warranty of p@2550: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the p@2550: GNU General Public License for more details. p@2550: p@2550: You should have received a copy of the GNU General Public License along p@2550: with this program; if not, write to the Free Software Foundation, Inc., p@2550: 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. p@2550: */ p@2550: p@2550: #ifndef _PRINT_H_ p@2550: #define _PRINT_H_ p@2550: p@2550: #include "update.h" p@2550: p@2550: extern void ccat_print_function_info(struct ccat_eth_priv *priv); p@2550: extern void print_mem(const unsigned char *p, size_t lines); p@2550: extern void print_update_info(const CCatInfoBlock * const info, p@2550: void __iomem * const ioaddr); p@2550: #endif /* #ifndef _PRINT_H_ */