Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228084
b: refs/heads/master
c: b706113
h: refs/heads/master
v: v3
  • Loading branch information
Alejandro R. Sedeño authored and Greg Kroah-Hartman committed Nov 11, 2010
1 parent c92adb0 commit 9ac87d6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2dab1ac81b4767095f96503a9ac093a68c6e9c95
refs/heads/master: b706113f1475ce983faabf12120ac4e90d512d02
4 changes: 2 additions & 2 deletions trunk/drivers/staging/bcm/Adapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/bcm/DDRInit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 9ac87d6

Please sign in to comment.