Hi,

Le Thu, 23 Mar 2006 14:59:44 -0500, Vivek Goyal a écrit :
 
>  #include <linux/compiler.h>
> +#include <linux/types.h>
>  /*
>   * Resources are tree-like, allowing
>   * nesting etc..
>   */
>  struct resource {
> +     u64 start, end;
>       const char *name;
> -     unsigned long start, end;
>       unsigned long flags;
>       struct resource *parent, *sibling, *child;
>  };

This patch break pnp resource printf in /sys/bus/pnp/*/resources .

Something like this should solve the problem

--- 1/drivers/pnp/interface.c   2006-01-03 04:21:10.000000000 +0100
+++ 2/drivers/pnp/interface.c   2006-04-14 22:54:45.000000000 +0200
@@ -264,7 +264,7 @@
                        if (pnp_port_flags(dev, i) & IORESOURCE_DISABLED)
                                pnp_printf(buffer," disabled\n");
                        else
-                               pnp_printf(buffer," 0x%lx-0x%lx\n",
+                               pnp_printf(buffer," 0x%llx-0x%llx\n",
                                                pnp_port_start(dev, i),
                                                pnp_port_end(dev, i));
                }
@@ -275,7 +275,7 @@
                        if (pnp_mem_flags(dev, i) & IORESOURCE_DISABLED)
                                pnp_printf(buffer," disabled\n");
                        else
-                               pnp_printf(buffer," 0x%lx-0x%lx\n",
+                               pnp_printf(buffer," 0x%llx-0x%llx\n",
                                                pnp_mem_start(dev, i),
                                                pnp_mem_end(dev, i));
                }
@@ -286,7 +286,7 @@
                        if (pnp_irq_flags(dev, i) & IORESOURCE_DISABLED)
                                pnp_printf(buffer," disabled\n");
                        else
-                               pnp_printf(buffer," %ld\n",
+                               pnp_printf(buffer," %lld\n",
                                                pnp_irq(dev, i));
                }
        }
@@ -296,7 +296,7 @@
                        if (pnp_dma_flags(dev, i) & IORESOURCE_DISABLED)
                                pnp_printf(buffer," disabled\n");
                        else
-                               pnp_printf(buffer," %ld\n",
+                               pnp_printf(buffer," %lld\n",
                                                pnp_dma(dev, i));
                }
        }

_______________________________________________
fastboot mailing list
[email protected]
https://lists.osdl.org/mailman/listinfo/fastboot

Reply via email to