~ubuntu-branches/ubuntu/saucy/u-boot/saucy

« back to all changes in this revision

Viewing changes to common/cmd_eeprom.c

  • Committer: Package Import Robot
  • Author(s): Clint Adams
  • Date: 2012-05-01 18:07:19 UTC
  • mfrom: (16.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20120501180719-rjntk3287im4a0ns
Tags: 2012.04.01-1
* New upstream version.
  - Update mipsel-native-endianness.diff.
  - Update no-error-on-set-but-unused-variables.diff (partially merged).
  - Drop kirkwood_spi-irq_mask.diff (merged).
  - Drop kirkwood-disable-l2c.diff (merged).

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 * Support for read and write access to EEPROM like memory devices. This
27
27
 * includes regular EEPROM as well as  FRAM (ferroelectic nonvolaile RAM).
28
28
 * FRAM devices read and write data at bus speed. In particular, there is no
29
 
 * write delay. Also, there is no limit imposed on the numer of bytes that can
 
29
 * write delay. Also, there is no limit imposed on the number of bytes that can
30
30
 * be transferred with a single read or write.
31
31
 *
32
32
 * Use the following configuration options to ensure no unneeded performance
104
104
                }
105
105
        }
106
106
 
107
 
        return cmd_usage(cmdtp);
 
107
        return CMD_RET_USAGE;
108
108
}
109
109
#endif
110
110