mirror of https://gitee.com/openkylin/linux.git
Staging: beceem: Use 32-bit integers for hardware register values
Switching to UINT because that's what the rest of this codebase uses. Signed-off-by: Alejandro R. Sedeño <asedeno@mit.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2dab1ac81b
commit
b706113f14
|
@ -601,8 +601,8 @@ typedef LINK_REQUEST CONTROL_MESSAGE;
|
|||
|
||||
typedef struct _DDR_SETTING
|
||||
{
|
||||
ULONG ulRegAddress;
|
||||
ULONG ulRegValue;
|
||||
UINT ulRegAddress;
|
||||
UINT ulRegValue;
|
||||
}DDR_SETTING, *PDDR_SETTING;
|
||||
typedef DDR_SETTING DDR_SET_NODE, *PDDR_SET_NODE;
|
||||
INT
|
||||
|
|
|
@ -776,7 +776,7 @@ int ddr_init(MINI_ADAPTER *Adapter)
|
|||
{
|
||||
PDDR_SETTING psDDRSetting=NULL;
|
||||
ULONG RegCount=0;
|
||||
ULONG value = 0;
|
||||
UINT value = 0;
|
||||
UINT uiResetValue = 0;
|
||||
UINT uiClockSetting = 0;
|
||||
int retval = STATUS_SUCCESS;
|
||||
|
@ -970,7 +970,7 @@ int ddr_init(MINI_ADAPTER *Adapter)
|
|||
{
|
||||
value = psDDRSetting->ulRegValue;
|
||||
}
|
||||
retval = wrmalt(Adapter, psDDRSetting->ulRegAddress, (PUINT)&value, sizeof(value));
|
||||
retval = wrmalt(Adapter, psDDRSetting->ulRegAddress, &value, sizeof(value));
|
||||
if(STATUS_SUCCESS != retval) {
|
||||
BCM_DEBUG_PRINT(Adapter,DBG_TYPE_PRINTK, 0, 0,"%s:%d\n", __FUNCTION__, __LINE__);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue