D | client.h | 1 /* SPDX-License-Identifier: MIT */ 36 /* logging for client-facing objects */ 37 #define nvif_printk(o,l,p,f,a...) do { \ argument 39 const struct nvkm_client *_client = _object->client; \ 40 if (_client->debug >= NV_DBG_##l) \ 41 printk(KERN_##p "nouveau: %s:%08x:%08x: "f, _client->name, \ 42 _object->handle, _object->oclass, ##a); \ 44 #define nvif_fatal(o,f,a...) nvif_printk((o), FATAL, CRIT, f, ##a) argument 45 #define nvif_error(o,f,a...) nvif_printk((o), ERROR, ERR, f, ##a) argument 46 #define nvif_debug(o,f,a...) nvif_printk((o), DEBUG, INFO, f, ##a) argument [all …]
|