On Wed, Nov 2, 2022 at 11:04 PM Jeffrey Hugo <quic_jhugo@xxxxxxxxxxx> wrote: > > On 11/2/2022 2:34 PM, Oded Gabbay wrote: > > diff --git a/drivers/accel/accel_drv.c b/drivers/accel/accel_drv.c > > new file mode 100644 > > index 000000000000..6132765ea054 > > --- /dev/null > > +++ b/drivers/accel/accel_drv.c > > @@ -0,0 +1,112 @@ > > +// SPDX-License-Identifier: GPL-2.0 > > + > > +/* > > + * Copyright 2022 HabanaLabs, Ltd. > > + * All Rights Reserved. > > + * > > + */ > > + > > +#include <linux/module.h> > > Alphebetical order? ok > > > +#include <linux/debugfs.h> > > +#include <linux/device.h> > > + > > +#include <drm/drm_accel.h> > > +#include <drm/drm_ioctl.h> > > +#include <drm/drm_print.h> > > + > > +static struct dentry *accel_debugfs_root; > > +struct class *accel_class; > > Static? > yes, thx.