diff options
| author | Wenbin song <[email protected]> | 2017-12-04 12:18:28 +0800 |
|---|---|---|
| committer | York Sun <[email protected]> | 2017-12-13 13:40:29 -0800 |
| commit | a8f33034f2ed029dd04aae4cfdf11bf1f13a03a2 (patch) | |
| tree | a28d800134e70495cd7988350956da12e24e5ff4 /drivers/net | |
| parent | 4c616a13de3e1cd526009e39a56674ba60e9c769 (diff) | |
armv8: ls1043a/ls2080a: check SoC by device ID
Check LS1043A/LS2080a by device ID without using personality ID to
determine revision number. This check applies to all various
personalities of the same SoC family.
Signed-off-by: Wenbin Song <[email protected]>
Reviewed-by: York Sun <[email protected]>
Diffstat (limited to 'drivers/net')
| -rw-r--r-- | drivers/net/fsl-mc/dpio/qbman_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/fsl-mc/dpio/qbman_private.h b/drivers/net/fsl-mc/dpio/qbman_private.h index 73bbae373ef..873323be0fc 100644 --- a/drivers/net/fsl-mc/dpio/qbman_private.h +++ b/drivers/net/fsl-mc/dpio/qbman_private.h @@ -175,8 +175,8 @@ void qbman_version(u32 *major, u32 *minor) * LS2080A SoC and its personalities has qbman cotroller version 4.0 * New SoCs like LS2088A, LS1088A has qbman conroller version 4.1 */ - svr_dev_id = get_svr() >> 16; - if (svr_dev_id == SVR_DEV_LS2080A) { + svr_dev_id = get_svr(); + if (IS_SVR_DEV(svr_dev_id, SVR_DEV(SVR_LS2080A))) { *major = 4; *minor = 0; } else { |
