Skip to content

Commit

Permalink
Merge branch 'i2c-pnx-fixes' of git://git.fluff.org/bjdooks/linux
Browse files Browse the repository at this point in the history
* 'i2c-pnx-fixes' of git://git.fluff.org/bjdooks/linux:
  i2c: i2c-pnx: Added missing mach/i2c.h and linux/io.h header file includes
  i2c: i2c-pnx: Made buf type unsigned to prevent sign extension
  i2c: i2c-pnx: Limit minimum jiffie timeout to 2
  • Loading branch information
torvalds committed Nov 20, 2009
2 parents 931ed94 + a7d73d8 commit a8a8a66
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions drivers/i2c/busses/i2c-pnx.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
#include <linux/completion.h>
#include <linux/platform_device.h>
#include <linux/i2c-pnx.h>
#include <linux/io.h>
#include <mach/hardware.h>
#include <mach/i2c.h>
#include <asm/irq.h>
#include <asm/uaccess.h>

Expand Down Expand Up @@ -54,6 +56,9 @@ static inline void i2c_pnx_arm_timer(struct i2c_adapter *adap)
struct timer_list *timer = &data->mif.timer;
int expires = I2C_PNX_TIMEOUT / (1000 / HZ);

if (expires <= 1)
expires = 2;

del_timer_sync(timer);

dev_dbg(&adap->dev, "Timer armed at %lu plus %u jiffies.\n",
Expand Down
2 changes: 1 addition & 1 deletion include/linux/i2c-pnx.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct i2c_pnx_mif {
int mode; /* Interface mode */
struct completion complete; /* I/O completion */
struct timer_list timer; /* Timeout */
char * buf; /* Data buffer */
u8 * buf; /* Data buffer */
int len; /* Length of data buffer */
};

Expand Down

0 comments on commit a8a8a66

Please sign in to comment.