~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/mfd/pcf50633-core.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
 
52
52
}
53
53
 
54
 
/* Read a block of upto 32 regs  */
 
54
/* Read a block of up to 32 regs  */
55
55
int pcf50633_read_block(struct pcf50633 *pcf, u8 reg,
56
56
                                        int nr_regs, u8 *data)
57
57
{
65
65
}
66
66
EXPORT_SYMBOL_GPL(pcf50633_read_block);
67
67
 
68
 
/* Write a block of upto 32 regs  */
 
68
/* Write a block of up to 32 regs  */
69
69
int pcf50633_write_block(struct pcf50633 *pcf , u8 reg,
70
70
                                        int nr_regs, u8 *data)
71
71
{
356
356
        return 0;
357
357
}
358
358
 
359
 
static struct i2c_device_id pcf50633_id_table[] = {
 
359
static const struct i2c_device_id pcf50633_id_table[] = {
360
360
        {"pcf50633", 0x73},
361
361
        {/* end of list */}
362
362
};