2011-07-17 09:45:40 +00:00
|
|
|
--- a/backend/qcam.c
|
|
|
|
+++ b/backend/qcam.c
|
2010-02-16 23:31:57 +00:00
|
|
|
@@ -105,6 +105,17 @@
|
|
|
|
|
|
|
|
#include "qcam.h"
|
|
|
|
|
2010-03-19 18:07:42 +00:00
|
|
|
+#if !defined( __i386__) && !defined(__arm__)
|
2010-02-16 23:31:57 +00:00
|
|
|
+static inline unsigned char inb(unsigned int port)
|
|
|
|
+{
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static inline void outb(unsigned char value, unsigned int port)
|
|
|
|
+{
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
/* status bits */
|
|
|
|
#define NeedRamTable (1 << 1)
|
|
|
|
#define BlackBalanceInProgress (1 << 6)
|