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