LEON: B1553BRM driver warnings fixes

This commit is contained in:
Daniel Hellstrom
2015-02-10 16:28:19 +01:00
parent 44e514f37e
commit be815e784e
2 changed files with 8 additions and 3 deletions

View File

@@ -1484,11 +1484,8 @@ static void b1553brm_interrupt(void *arg)
void b1553brm_print_dev(struct drvmgr_dev *dev, int options) void b1553brm_print_dev(struct drvmgr_dev *dev, int options)
{ {
brm_priv *pDev = dev->priv; brm_priv *pDev = dev->priv;
struct amba_dev_info *devinfo;
struct brm_reg *regs = pDev->regs; struct brm_reg *regs = pDev->regs;
devinfo = (struct amba_dev_info *)pDev->dev->businfo;
/* Print */ /* Print */
printf("--- B1553BRM[%d] %s ---\n", pDev->minor, pDev->devName); printf("--- B1553BRM[%d] %s ---\n", pDev->minor, pDev->devName);
printf(" REGS: 0x%x\n", (unsigned int)pDev->regs); printf(" REGS: 0x%x\n", (unsigned int)pDev->regs);

View File

@@ -18,6 +18,8 @@
#ifndef __B1553BRM_H__ #ifndef __B1553BRM_H__
#define __B1553BRM_H__ #define __B1553BRM_H__
#include <drvmgr/drvmgr.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
@@ -162,6 +164,12 @@ void b1553brm_register_drv(void);
*/ */
extern unsigned short b1553brm_rt_cmd_legalize[16]; extern unsigned short b1553brm_rt_cmd_legalize[16];
/* Print information about all BRM devices handled by this driver */
void b1553brm_print(int options);
/* Print information about one BRM device */
void b1553brm_print_dev(struct drvmgr_dev *dev, int options);
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif