Changes in / [fe1c48d:03936831] in mainline


Ignore:
Files:
11 added
4 deleted
17 edited

Legend:

Unmodified
Added
Removed
  • .bzrignore

    rfe1c48d r03936831  
    196196uspace/dist/demo.xm
    197197uspace/dist/drv/ahci/
     198uspace/dist/drv/apic/
    198199uspace/dist/drv/ar9271/
    199200uspace/dist/drv/ata_bd/
     
    204205uspace/dist/drv/hdaudio/
    205206uspace/dist/drv/i8042/
     207uspace/dist/drv/i8259/
    206208uspace/dist/drv/icp/
    207209uspace/dist/drv/icp-ic/
     
    236238uspace/dist/inc/c/
    237239uspace/dist/logo.tga
    238 uspace/dist/srv/apic
    239240uspace/dist/srv/cdfs
    240241uspace/dist/srv/clipboard
     
    250251uspace/dist/srv/file_bd
    251252uspace/dist/srv/hound
    252 uspace/dist/srv/i8259
    253253uspace/dist/srv/inetsrv
    254254uspace/dist/srv/input
     
    299299uspace/drv/fb/amdm37x_dispc/amdm37x_dispc
    300300uspace/drv/fb/kfb/kfb
     301uspace/drv/intctl/apic/apic
     302uspace/drv/intctl/i8259/i8259
    301303uspace/drv/intctl/icp-ic/icp-ic
    302304uspace/drv/nic/ar9271/ar9271
     
    385387uspace/srv/hw/bus/cuda_adb/cuda_adb
    386388uspace/srv/hw/char/s3c24xx_uart/s3c24ser
    387 uspace/srv/hw/irc/apic/apic
    388 uspace/srv/hw/irc/i8259/i8259
    389389uspace/srv/hw/irc/obio/obio
    390390uspace/srv/klog/klog
  • Makefile

    rfe1c48d r03936831  
    3131
    3232CSCOPE = cscope
     33FORMAT = clang-format
    3334CHECK = tools/check.sh
    3435CONFIG = tools/config.py
     
    6465        find boot -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_boot.out
    6566        find uspace -type f -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_uspace.out
     67
     68format:
     69        find abi kernel boot uspace -type f -regex '^.*\.[ch]$$' | xargs $(FORMAT) -i -sort-includes -style=file
    6670
    6771# Pre-integration build check
  • boot/arch/amd64/Makefile.inc

    rfe1c48d r03936831  
    2929RD_SRVS_ESSENTIAL += \
    3030        $(USPACE_PATH)/srv/audio/hound/hound \
    31         $(USPACE_PATH)/srv/devman/devman \
    32         $(USPACE_PATH)/srv/hw/irc/apic/apic \
    33         $(USPACE_PATH)/srv/hw/irc/i8259/i8259
    34 
     31        $(USPACE_PATH)/srv/devman/devman
    3532
    3633RD_DRVS_ESSENTIAL += \
     34        intctl/apic \
     35        intctl/i8259 \
    3736        platform/pc \
    38         block/ata_bd \
    3937        bus/pci/pciintel \
    4038        bus/isa \
  • uspace/Makefile

    rfe1c48d r03936831  
    135135        srv/hid/remcons \
    136136        srv/hw/char/s3c24xx_uart \
    137         srv/hw/irc/apic \
    138         srv/hw/irc/i8259 \
    139137        srv/hw/irc/obio \
    140138        srv/hid/rfb \
     
    170168        drv/fb/amdm37x_dispc \
    171169        drv/fb/kfb \
     170        drv/intctl/apic \
     171        drv/intctl/i8259 \
    172172        drv/intctl/icp-ic \
    173173        drv/nic/ne2k \
  • uspace/app/init/init.c

    rfe1c48d r03936831  
    338338       
    339339        srv_start("/srv/devman");
    340         srv_start("/srv/apic");
    341         srv_start("/srv/i8259");
    342340        srv_start("/srv/obio");
    343341        srv_start("/srv/s3c24xx_uart");
  • uspace/app/mkmfs/mkmfs.c

    rfe1c48d r03936831  
    348348        unsigned int i;
    349349        uint8_t *itable_buf;
    350         int rc;
     350        int rc = EOK;
    351351
    352352        long itable_off = sb->zbmap_blocks + sb->ibmap_blocks + 2;
     
    633633        const unsigned int zbmap_nblocks = sb->zbmap_blocks;
    634634        unsigned int i;
    635         int rc;
     635        int rc = EOK;
    636636
    637637        ibmap_buf = malloc(ibmap_nblocks * sb->block_size);
     
    660660                if ((rc = write_block(start_block + i,
    661661                    1, (ibmap_buf8 + i * sb->block_size))) != EOK)
    662                         return rc;
     662                        goto exit;
    663663        }
    664664
     
    668668                if ((rc = write_block(start_block + i,
    669669                    1, (zbmap_buf8 + i * sb->block_size))) != EOK)
    670                         return rc;
     670                        goto exit;
    671671        }
    672672
  • uspace/app/sbi/src/os/helenos.c

    rfe1c48d r03936831  
    155155        size_t offset;
    156156        int i;
    157         wchar_t c;
     157        wchar_t c = 0;
    158158
    159159        if (index < 0)
  • uspace/app/sbi/src/run_expr.c

    rfe1c48d r03936831  
    25042504        elem_index = 0;
    25052505
     2506        assert(node != NULL);
     2507
    25062508        i = 0;
    2507         while (node != NULL) {
     2509        do {
    25082510                if (i >= 1) {
    25092511                        printf("Error: Too many indices string.\n");
     
    25272529                node = list_next(args, node);
    25282530                i += 1;
    2529         }
     2531        } while (node != NULL);
    25302532
    25312533        if (i < 1) {
  • uspace/drv/bus/isa/isa.c

    rfe1c48d r03936831  
    453453}
    454454
     455static void isa_fun_add_mem_range(isa_fun_t *fun, uintptr_t addr, size_t len)
     456{
     457        size_t count = fun->hw_resources.count;
     458        hw_resource_t *resources = fun->hw_resources.resources;
     459
     460        isa_bus_t *isa = isa_bus(ddf_fun_get_dev(fun->fnode));
     461
     462        if (count < ISA_MAX_HW_RES) {
     463                resources[count].type = MEM_RANGE;
     464                resources[count].res.mem_range.address = addr;
     465                resources[count].res.mem_range.address += isa->pio_win.mem.base;
     466                resources[count].res.mem_range.size = len;
     467                resources[count].res.mem_range.relative = true;
     468                resources[count].res.mem_range.endianness = LITTLE_ENDIAN;
     469
     470                fun->hw_resources.count++;
     471
     472                ddf_msg(LVL_NOTE, "Added mem range (addr=0x%zx, size=0x%x) to "
     473                    "function %s", (uintptr_t) addr, (unsigned int) len,
     474                    ddf_fun_get_name(fun->fnode));
     475        }
     476}
     477
    455478static void fun_parse_irq(isa_fun_t *fun, const char *val)
    456479{
     
    496519}
    497520
     521static void fun_parse_mem_range(isa_fun_t *fun, const char *val)
     522{
     523        uintptr_t addr;
     524        size_t len;
     525        char *end = NULL;
     526
     527        val = skip_spaces(val);
     528        addr = strtoul(val, &end, 0x10);
     529
     530        if (val == end)
     531                return;
     532
     533        val = skip_spaces(end);
     534        len = strtol(val, &end, 0x10);
     535
     536        if (val == end)
     537                return;
     538
     539        isa_fun_add_mem_range(fun, addr, len);
     540}
     541
    498542static void get_match_id(char **id, const char *val)
    499543{
     
    564608
    565609        if (!prop_parse(fun, line, "io_range", &fun_parse_io_range) &&
     610            !prop_parse(fun, line, "mem_range", &fun_parse_mem_range) &&
    566611            !prop_parse(fun, line, "irq", &fun_parse_irq) &&
    567612            !prop_parse(fun, line, "dma", &fun_parse_dma) &&
  • uspace/drv/bus/isa/isa.dev

    rfe1c48d r03936831  
     1i8259:
     2        match 100 isa/i8259
     3        mem_range 0x20 2
     4        mem_range 0xa0 2
     5
     6apic:
     7        match 100 isa/apic
     8        mem_range 0xfec00000 0x14
    19com1:
    210        match 100 isa/ns8250
  • uspace/drv/bus/pci/pciintel/pci.c

    rfe1c48d r03936831  
    293293        const uint32_t conf_addr = CONF_ADDR(fun->bus, fun->dev, fun->fn, reg);
    294294        pci_bus_t *bus = pci_bus_from_fun(fun);
    295         uint32_t val;
     295        uint32_t val = 0;
    296296       
    297297        fibril_mutex_lock(&bus->conf_mutex);
  • uspace/drv/intctl/icp-ic/icp-ic.c

    rfe1c48d r03936831  
    4242#include <errno.h>
    4343#include <ipc/irc.h>
    44 #include <loc.h>
    4544#include <stdint.h>
    4645
  • uspace/drv/intctl/icp-ic/icp-ic.h

    rfe1c48d r03936831  
    3434
    3535#ifndef ICP_IC_H_
    36 #define ICP_IC_H
     36#define ICP_IC_H_
    3737
    3838#include <ddf/driver.h>
  • uspace/drv/platform/icp/icp.c

    rfe1c48d r03936831  
    279279        int rc;
    280280
    281         rc = icp_add_fun(dev, "kbd", "arm/pl050", &icp_kbd_fun_proto);
    282         if (rc != EOK)
    283                 return rc;
    284 
    285         rc = icp_add_fun(dev, "mouse", "arm/pl050", &icp_mouse_fun_proto);
    286         if (rc != EOK)
    287                 return rc;
    288 
    289281        rc = icp_add_fun(dev, "intctl", "integratorcp/intctl",
    290282            &icp_ic_fun_proto);
     
    292284                return rc;
    293285
     286        rc = icp_add_fun(dev, "kbd", "arm/pl050", &icp_kbd_fun_proto);
     287        if (rc != EOK)
     288                return rc;
     289
     290        rc = icp_add_fun(dev, "mouse", "arm/pl050", &icp_mouse_fun_proto);
     291        if (rc != EOK)
     292                return rc;
     293
    294294        return EOK;
    295295}
  • uspace/lib/bithenge/src/compound.c

    rfe1c48d r03936831  
    8181
    8282        *out = in;
    83         return rc;
     83        return EOK;
    8484}
    8585
  • uspace/lib/ext4/src/extent.c

    rfe1c48d r03936831  
    375375    uint32_t *fblock)
    376376{
    377         int rc;
     377        int rc = EOK;
    378378        /* Compute bound defined by i-node size */
    379379        uint64_t inode_size =
  • uspace/lib/trackmod/xm.c

    rfe1c48d r03936831  
    289289        size_t instr_size;
    290290        size_t smp_size;
    291         size_t smp_hdr_size;
     291        size_t smp_hdr_size = 0;  /* GCC false alarm on uninitialized */
    292292        ssize_t nread;
    293293        uint8_t ltype;
Note: See TracChangeset for help on using the changeset viewer.