firewire: replace get_features card driver hook
by feature variables in the fw_card struct. The hook appeared to be an unnecessary abstraction in the card driver interface. Cleaner would be to pass those feature flags as arguments to fw_card_initialize() or fw_card_add(), but the FairnessControl register is in the SCLK domain and may therefore not be accessible while Link Power Status is off, i.e. before the card->driver->enable call from fw_card_add(). Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
@@ -1129,8 +1129,7 @@ static void handle_registers(struct fw_card *card, struct fw_request *request,
|
||||
break;
|
||||
|
||||
case CSR_PRIORITY_BUDGET:
|
||||
if (!(card->driver->get_features(card) &
|
||||
FEATURE_PRIORITY_BUDGET))
|
||||
if (!card->priority_budget_implemented)
|
||||
rcode = RCODE_ADDRESS_ERROR;
|
||||
else if (tcode == TCODE_READ_QUADLET_REQUEST)
|
||||
*data = cpu_to_be32(card->driver->
|
||||
|
Reference in New Issue
Block a user