diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2011-05-25 21:09:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-25 22:04:15 -0400 |
commit | 520fd8457ea8a1bcd6fe3e133b3e0eb6e6fe22ce (patch) | |
tree | 9955e8d872c1526c35d3e99bc41ccf77e1ca3dc4 | |
parent | 14d74e0cab7a7779a7ff0c3863c04c8a8e507106 (diff) |
video: mb862xx: udelay need linux/delay.h
Fix this:
drivers/video/mb862xx/mb862xx-i2c.c: In function 'mb862xx_i2c_wait_event':
drivers/video/mb862xx/mb862xx-i2c.c:25: error: implicit declaration of function 'udelay'
caused by commit f8a6b1f44833 ("video: mb862xx: add support for
controller's I2C bus adapter").
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/video/mb862xx/mb862xx-i2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/mb862xx/mb862xx-i2c.c b/drivers/video/mb862xx/mb862xx-i2c.c index cb77d3b4657d..b953099edd8e 100644 --- a/drivers/video/mb862xx/mb862xx-i2c.c +++ b/drivers/video/mb862xx/mb862xx-i2c.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/fb.h> | 12 | #include <linux/fb.h> |
13 | #include <linux/i2c.h> | 13 | #include <linux/i2c.h> |
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <linux/delay.h> | ||
15 | 16 | ||
16 | #include "mb862xxfb.h" | 17 | #include "mb862xxfb.h" |
17 | #include "mb862xx_reg.h" | 18 | #include "mb862xx_reg.h" |