# HG changeset patch # User gthomas # Date 1027515923 0 # Node ID 4486bfabb514e0ce48b18801d1d40c77ef8714c9 # Parent 825f61ca19756b2320de5faf98ec97faf166e466 Fix data type for device status. diff --git a/packages/devs/flash/amd/am29xxxxx/current/ChangeLog b/packages/devs/flash/amd/am29xxxxx/current/ChangeLog --- a/packages/devs/flash/amd/am29xxxxx/current/ChangeLog +++ b/packages/devs/flash/amd/am29xxxxx/current/ChangeLog @@ -1,3 +1,9 @@ +2002-07-24 Gary Thomas +2002-07-24 Motoya Kurotsu + + * include/flash_am29xxxxx.inl (_flash_program_buf): Fix data + type for 'state' - needs to be flash_data_t. + 2002-06-20 Gary Thomas * include/flash_am29xxxxx.inl: Add cache disable/enable code diff --git a/packages/devs/flash/amd/am29xxxxx/current/include/flash_am29xxxxx.inl b/packages/devs/flash/amd/am29xxxxx/current/include/flash_am29xxxxx.inl --- a/packages/devs/flash/amd/am29xxxxx/current/include/flash_am29xxxxx.inl +++ b/packages/devs/flash/amd/am29xxxxx/current/include/flash_am29xxxxx.inl @@ -446,7 +446,7 @@ static int f_s2 = FLASH_P2V(BANK + FLASH_Setup_Addr2); while (len > 0) { - int state; + flash_data_t state; addr_v = FLASH_P2V(addr_p++);