- Remove a redundant variable and an unnecessary cast.
- Fix whitespace.
This commit is contained in:
parent
ef60c17afc
commit
26975ab6ef
@ -290,7 +290,7 @@ fire_attach(device_t dev)
|
|||||||
uint64_t ino_bitmap, val;
|
uint64_t ino_bitmap, val;
|
||||||
phandle_t node;
|
phandle_t node;
|
||||||
uint32_t prop, prop_array[2];
|
uint32_t prop, prop_array[2];
|
||||||
int i, j, mode, nrange;
|
int i, j, mode;
|
||||||
u_int lw;
|
u_int lw;
|
||||||
uint16_t mps;
|
uint16_t mps;
|
||||||
|
|
||||||
@ -725,13 +725,12 @@ fire_attach(device_t dev)
|
|||||||
rman_manage_region(&sc->sc_pci_mem_rman, 0, FO_MEM_SIZE) != 0)
|
rman_manage_region(&sc->sc_pci_mem_rman, 0, FO_MEM_SIZE) != 0)
|
||||||
panic("%s: failed to set up memory rman", __func__);
|
panic("%s: failed to set up memory rman", __func__);
|
||||||
|
|
||||||
nrange = OF_getprop_alloc(node, "ranges", sizeof(*range),
|
i = OF_getprop_alloc(node, "ranges", sizeof(*range), (void **)&range);
|
||||||
(void **)&range);
|
|
||||||
/*
|
/*
|
||||||
* Make sure that the expected ranges are present. The
|
* Make sure that the expected ranges are present. The
|
||||||
* OFW_PCI_CS_MEM64 one is not currently used though.
|
* OFW_PCI_CS_MEM64 one is not currently used though.
|
||||||
*/
|
*/
|
||||||
if (nrange != FIRE_NRANGE)
|
if (i != FIRE_NRANGE)
|
||||||
panic("%s: unsupported number of ranges", __func__);
|
panic("%s: unsupported number of ranges", __func__);
|
||||||
/*
|
/*
|
||||||
* Find the addresses of the various bus spaces.
|
* Find the addresses of the various bus spaces.
|
||||||
@ -2101,7 +2100,7 @@ fire_alloc_bus_tag(struct fire_softc *sc, int type)
|
|||||||
{
|
{
|
||||||
bus_space_tag_t bt;
|
bus_space_tag_t bt;
|
||||||
|
|
||||||
bt = (bus_space_tag_t)malloc(sizeof(struct bus_space_tag), M_DEVBUF,
|
bt = malloc(sizeof(struct bus_space_tag), M_DEVBUF,
|
||||||
M_NOWAIT | M_ZERO);
|
M_NOWAIT | M_ZERO);
|
||||||
if (bt == NULL)
|
if (bt == NULL)
|
||||||
panic("%s: out of memory", __func__);
|
panic("%s: out of memory", __func__);
|
||||||
|
Loading…
Reference in New Issue
Block a user