File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ static inline struct irq_domain *irq_domain_create_nomap(struct fwnode_handle *f
396
396
const struct irq_domain_ops * ops ,
397
397
void * host_data )
398
398
{
399
- struct irq_domain_info info = {
399
+ const struct irq_domain_info info = {
400
400
.fwnode = fwnode ,
401
401
.hwirq_max = max_irq ,
402
402
.direct_max = max_irq ,
@@ -416,7 +416,7 @@ static inline struct irq_domain *irq_domain_create_linear(struct fwnode_handle *
416
416
const struct irq_domain_ops * ops ,
417
417
void * host_data )
418
418
{
419
- struct irq_domain_info info = {
419
+ const struct irq_domain_info info = {
420
420
.fwnode = fwnode ,
421
421
.size = size ,
422
422
.hwirq_max = size ,
@@ -432,7 +432,7 @@ static inline struct irq_domain *irq_domain_create_tree(struct fwnode_handle *fw
432
432
const struct irq_domain_ops * ops ,
433
433
void * host_data )
434
434
{
435
- struct irq_domain_info info = {
435
+ const struct irq_domain_info info = {
436
436
.fwnode = fwnode ,
437
437
.hwirq_max = ~0 ,
438
438
.ops = ops ,
@@ -548,7 +548,7 @@ static inline struct irq_domain *irq_domain_create_hierarchy(struct irq_domain *
548
548
const struct irq_domain_ops * ops ,
549
549
void * host_data )
550
550
{
551
- struct irq_domain_info info = {
551
+ const struct irq_domain_info info = {
552
552
.fwnode = fwnode ,
553
553
.size = size ,
554
554
.hwirq_max = size ? : ~0U ,
You can’t perform that action at this time.
0 commit comments