Alan Cox wrote:
+unsigned char inb_pic(unsigned int port)
+{
+ /* delay for some accesses to PIC on motherboard or in chipset must be
+ at least one microsecond, but be safe here. */
+ unsigned char value = inb(port);
+ udelay(2);
+ return value;
+}
inline
> +unsigned char inb_pic(unsigned int port)
> +{
> + /* delay for some accesses to PIC on motherboard or in chipset must be
> +at least one microsecond, but be safe here. */
> + unsigned char value = inb(port);
> + udelay(2);
> + return value;
> +}
inline it. Its almost no
2 matches
Mail list logo