Hi Jakub,

On Tue, 7 Jan 2014 13:02:29 +0100
Jakub Jermar <[email protected]> wrote:
> On 5.1.2014 23:12, Martin Sucha wrote:
> my sparc builds no longer build and the compiler complains about
> argument count mismatch in the kernel ns16550 driver. I noticed your
> changes touch this code. Is it possible you forgot to run make check?
Yes, I forgot to run make check. Sorry. Looking at the diff, I think
reverting this chunk (included in error) should be sufficient (I'll do
it as soon as my sparc64 toolchain gets built, or feel free to do it
sooner if you prefer):

@@ -116,7 +120,8 @@
        ns16550_t *ns16550 = (ns16550_t *) (km_map(aligned_addr,
offset + size, PAGE_WRITE | PAGE_NOT_CACHEABLE) + offset);
        
-       ns16550_instance_t *ns16550_instance = ns16550_init(ns16550,
inr, cir, cir_arg);
+       ns16550_instance_t *ns16550_instance = ns16550_init(ns16550,
inr, cir,
+           cir_arg, NULL);
        if (ns16550_instance) {
                kbrd_instance_t *kbrd_instance = kbrd_init();
                if (kbrd_instance) {

Regards,
Martin Sucha

_______________________________________________
HelenOS-devel mailing list
[email protected]
http://lists.modry.cz/listinfo/helenos-devel

Reply via email to