Changeset 3490

Show
Ignore:
Timestamp:
08/11/00 12:02:54 (8 years ago)
Author:
frodo
Message:

Sync with 2.4.0-test6. Mostly typos.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • i2c/trunk/doc/dev-interface

    r3450 r3490  
    127127  __s32 i2c_smbus_write_block_data(int file, __u8 command, __u8 length,  
    128128                                   __u8 *values); 
    129 All these tranactions return -1 on failure; you can read errno to see 
     129All these transactions return -1 on failure; you can read errno to see 
    130130what happened. The 'write' transactions return 0 on success; the 
    131131'read' transactions return the read value, except for read_block, which 
  • i2c/trunk/doc/i2c-protocol

    r3428 r3490  
    1919 
    2020 
    21 Simple send tranaction 
     21Simple send transaction 
    2222====================== 
    2323 
     
    3535 
    3636 
    37 Combined tranactions 
     37Combined transactions 
    3838==================== 
    3939 
     
    5555    In a combined transaction, no 'S Addr' is generated at some point. 
    5656    For example, setting I2C_M_NOSTART on the second partial message 
    57     generateds something like: 
     57    generates something like: 
    5858      S Addr Rd [A] [Data] NA Wr [A] Data [A] P 
    5959    If you set the I2C_M_NOSTART variable for the first partial message, 
  • i2c/trunk/doc/writing-clients

    r3477 r3490  
    3737  } 
    3838  
    39 The name can be choosen freely, and may be upto 40 characters long. Please 
     39The name can be chosen freely, and may be upto 40 characters long. Please 
    4040use something descriptive here. 
    4141 
     
    660660================ 
    661661 
    662 A generic ioctl-like function call back is supported. You will seldomly 
     662A generic ioctl-like function call back is supported. You will seldom 
    663663need this. You may even set it to NULL. 
    664664 
     
    750750 
    751751  /* This call returns a unique low identifier for each registered adapter, 
    752    * or -1 if the adapter was not regisitered. 
     752   * or -1 if the adapter was not registered. 
    753753   */ 
    754754  extern int i2c_adapter_id(struct i2c_adapter *adap); 
     
    7927920644 is safe, as the file will be owned by root:root.  
    793793 
    794 The seventh and eigth parameters should be &sensors_proc_real and 
     794The seventh and eighth parameters should be &sensors_proc_real and 
    795795&sensors_sysctl_real if you want to export lists of reals (scaled 
    796796integers). You can also use your own function for them, as usual. 
  • i2c/trunk/mkpatch/Config.in

    r3434 r3490  
    1111   dep_tristate 'I2C bit-banging interfaces'  CONFIG_I2C_ALGOBIT $CONFIG_I2C 
    1212   if [ "$CONFIG_I2C_ALGOBIT" != "n" ]; then 
    13       dep_tristate '  Philips style parallel port adapter' CONFIG_I2C_PHILIPSPAR $CONFIG_I2C_ALGOBIT 
     13      dep_tristate '  Philips style parallel port adapter' CONFIG_I2C_PHILIPSPAR $CONFIG_I2C_ALGOBIT $CONFIG_PARPORT 
    1414      dep_tristate '  ELV adapter' CONFIG_I2C_ELV $CONFIG_I2C_ALGOBIT 
    1515      dep_tristate '  Velleman K9000 adapter' CONFIG_I2C_VELLEMAN $CONFIG_I2C_ALGOBIT 
  • i2c/trunk/mkpatch/mkpatch.pl

    r3488 r3490  
    438438# 
    439439 
    440 MOD_LIST_NAME := I2C_MODULES 
    441440O_TARGET := i2c.o 
    442441