bus/fslmc: remove the export for QBMAN version

This func is not required to be used outside of the qbman driver.

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
Hemant Agrawal 2017-09-16 16:22:16 +05:30 committed by Ferruh Yigit
parent 8b87090577
commit cb3bfcbb21
5 changed files with 5 additions and 13 deletions

View File

@ -38,10 +38,6 @@ typedef uint64_t dma_addr_t;
*
*/
#define QMAN_REV_4000 0x04000000
#define QMAN_REV_4100 0x04010000
#define QMAN_REV_4101 0x04010001
/**
* struct qbman_block_desc - qbman block descriptor structure
* @ccsr_reg_bar: CCSR register map.

View File

@ -1132,6 +1132,4 @@ int qbman_swp_send_multiple(struct qbman_swp *s,
int qbman_check_command_complete(struct qbman_swp *s,
const struct qbman_result *dq);
int qbman_get_version(void);
#endif /* !_FSL_QBMAN_PORTAL_H */

View File

@ -105,8 +105,6 @@ struct qb_attr_code code_sdqcr_dqsrc = QB_CODE(0, 0, 16);
#define MAX_QBMAN_PORTALS 35
static struct qbman_swp *portal_idx_map[MAX_QBMAN_PORTALS];
uint32_t qman_version;
/*********************************/
/* Portal constructor/destructor */
/*********************************/
@ -1579,8 +1577,3 @@ int qbman_swp_send_multiple(struct qbman_swp *s,
return sent;
}
int qbman_get_version(void)
{
return qman_version;
}

View File

@ -29,6 +29,7 @@
#include "qbman_private.h"
#include <fsl_qbman_portal.h>
uint32_t qman_version;
/* All QBMan command and result structures use this "valid bit" encoding */
#define QB_VALID_BIT ((uint32_t)0x80)

View File

@ -171,4 +171,8 @@ static inline void hexdump(const void *ptr, size_t sz)
__hexdump(start, end, p, sz, c);
}
#define QMAN_REV_4000 0x04000000
#define QMAN_REV_4100 0x04010000
#define QMAN_REV_4101 0x04010001
#include "qbman_sys.h"